composer.lock 243 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757
  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": "157f955e0ffa8dd0d9811e3f1d051c6b",
  8. "packages": [
  9. {
  10. "name": "composer/package-versions-deprecated",
  11. "version": "1.10.99",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/package-versions-deprecated.git",
  15. "reference": "dd51b4443d58b34b6d9344cf4c288e621c9a826f"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/dd51b4443d58b34b6d9344cf4c288e621c9a826f",
  20. "reference": "dd51b4443d58b34b6d9344cf4c288e621c9a826f",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "composer-plugin-api": "^1.1.0 || ^2.0",
  25. "php": "^7"
  26. },
  27. "replace": {
  28. "ocramius/package-versions": "1.10.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. "time": "2020-07-15T08:39:18+00:00"
  63. },
  64. {
  65. "name": "doctrine/annotations",
  66. "version": "1.10.3",
  67. "source": {
  68. "type": "git",
  69. "url": "https://github.com/doctrine/annotations.git",
  70. "reference": "5db60a4969eba0e0c197a19c077780aadbc43c5d"
  71. },
  72. "dist": {
  73. "type": "zip",
  74. "url": "https://api.github.com/repos/doctrine/annotations/zipball/5db60a4969eba0e0c197a19c077780aadbc43c5d",
  75. "reference": "5db60a4969eba0e0c197a19c077780aadbc43c5d",
  76. "shasum": ""
  77. },
  78. "require": {
  79. "doctrine/lexer": "1.*",
  80. "ext-tokenizer": "*",
  81. "php": "^7.1 || ^8.0"
  82. },
  83. "require-dev": {
  84. "doctrine/cache": "1.*",
  85. "phpunit/phpunit": "^7.5"
  86. },
  87. "type": "library",
  88. "extra": {
  89. "branch-alias": {
  90. "dev-master": "1.9.x-dev"
  91. }
  92. },
  93. "autoload": {
  94. "psr-4": {
  95. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  96. }
  97. },
  98. "notification-url": "https://packagist.org/downloads/",
  99. "license": [
  100. "MIT"
  101. ],
  102. "authors": [
  103. {
  104. "name": "Guilherme Blanco",
  105. "email": "guilhermeblanco@gmail.com"
  106. },
  107. {
  108. "name": "Roman Borschel",
  109. "email": "roman@code-factory.org"
  110. },
  111. {
  112. "name": "Benjamin Eberlei",
  113. "email": "kontakt@beberlei.de"
  114. },
  115. {
  116. "name": "Jonathan Wage",
  117. "email": "jonwage@gmail.com"
  118. },
  119. {
  120. "name": "Johannes Schmitt",
  121. "email": "schmittjoh@gmail.com"
  122. }
  123. ],
  124. "description": "Docblock Annotations Parser",
  125. "homepage": "http://www.doctrine-project.org",
  126. "keywords": [
  127. "annotations",
  128. "docblock",
  129. "parser"
  130. ],
  131. "time": "2020-05-25T17:24:27+00:00"
  132. },
  133. {
  134. "name": "doctrine/cache",
  135. "version": "1.10.2",
  136. "source": {
  137. "type": "git",
  138. "url": "https://github.com/doctrine/cache.git",
  139. "reference": "13e3381b25847283a91948d04640543941309727"
  140. },
  141. "dist": {
  142. "type": "zip",
  143. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  144. "reference": "13e3381b25847283a91948d04640543941309727",
  145. "shasum": ""
  146. },
  147. "require": {
  148. "php": "~7.1 || ^8.0"
  149. },
  150. "conflict": {
  151. "doctrine/common": ">2.2,<2.4"
  152. },
  153. "require-dev": {
  154. "alcaeus/mongo-php-adapter": "^1.1",
  155. "doctrine/coding-standard": "^6.0",
  156. "mongodb/mongodb": "^1.1",
  157. "phpunit/phpunit": "^7.0",
  158. "predis/predis": "~1.0"
  159. },
  160. "suggest": {
  161. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  162. },
  163. "type": "library",
  164. "extra": {
  165. "branch-alias": {
  166. "dev-master": "1.9.x-dev"
  167. }
  168. },
  169. "autoload": {
  170. "psr-4": {
  171. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "MIT"
  177. ],
  178. "authors": [
  179. {
  180. "name": "Guilherme Blanco",
  181. "email": "guilhermeblanco@gmail.com"
  182. },
  183. {
  184. "name": "Roman Borschel",
  185. "email": "roman@code-factory.org"
  186. },
  187. {
  188. "name": "Benjamin Eberlei",
  189. "email": "kontakt@beberlei.de"
  190. },
  191. {
  192. "name": "Jonathan Wage",
  193. "email": "jonwage@gmail.com"
  194. },
  195. {
  196. "name": "Johannes Schmitt",
  197. "email": "schmittjoh@gmail.com"
  198. }
  199. ],
  200. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  201. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  202. "keywords": [
  203. "abstraction",
  204. "apcu",
  205. "cache",
  206. "caching",
  207. "couchdb",
  208. "memcached",
  209. "php",
  210. "redis",
  211. "xcache"
  212. ],
  213. "time": "2020-07-07T18:54:01+00:00"
  214. },
  215. {
  216. "name": "doctrine/collections",
  217. "version": "1.6.7",
  218. "source": {
  219. "type": "git",
  220. "url": "https://github.com/doctrine/collections.git",
  221. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a"
  222. },
  223. "dist": {
  224. "type": "zip",
  225. "url": "https://api.github.com/repos/doctrine/collections/zipball/55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  226. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  227. "shasum": ""
  228. },
  229. "require": {
  230. "php": "^7.1.3 || ^8.0"
  231. },
  232. "require-dev": {
  233. "doctrine/coding-standard": "^6.0",
  234. "phpstan/phpstan-shim": "^0.9.2",
  235. "phpunit/phpunit": "^7.0",
  236. "vimeo/psalm": "^3.8.1"
  237. },
  238. "type": "library",
  239. "autoload": {
  240. "psr-4": {
  241. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  242. }
  243. },
  244. "notification-url": "https://packagist.org/downloads/",
  245. "license": [
  246. "MIT"
  247. ],
  248. "authors": [
  249. {
  250. "name": "Guilherme Blanco",
  251. "email": "guilhermeblanco@gmail.com"
  252. },
  253. {
  254. "name": "Roman Borschel",
  255. "email": "roman@code-factory.org"
  256. },
  257. {
  258. "name": "Benjamin Eberlei",
  259. "email": "kontakt@beberlei.de"
  260. },
  261. {
  262. "name": "Jonathan Wage",
  263. "email": "jonwage@gmail.com"
  264. },
  265. {
  266. "name": "Johannes Schmitt",
  267. "email": "schmittjoh@gmail.com"
  268. }
  269. ],
  270. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  271. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  272. "keywords": [
  273. "array",
  274. "collections",
  275. "iterators",
  276. "php"
  277. ],
  278. "time": "2020-07-27T17:53:49+00:00"
  279. },
  280. {
  281. "name": "doctrine/common",
  282. "version": "2.13.3",
  283. "source": {
  284. "type": "git",
  285. "url": "https://github.com/doctrine/common.git",
  286. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f"
  287. },
  288. "dist": {
  289. "type": "zip",
  290. "url": "https://api.github.com/repos/doctrine/common/zipball/f3812c026e557892c34ef37f6ab808a6b567da7f",
  291. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f",
  292. "shasum": ""
  293. },
  294. "require": {
  295. "doctrine/annotations": "^1.0",
  296. "doctrine/cache": "^1.0",
  297. "doctrine/collections": "^1.0",
  298. "doctrine/event-manager": "^1.0",
  299. "doctrine/inflector": "^1.0",
  300. "doctrine/lexer": "^1.0",
  301. "doctrine/persistence": "^1.3.3",
  302. "doctrine/reflection": "^1.0",
  303. "php": "^7.1 || ^8.0"
  304. },
  305. "require-dev": {
  306. "doctrine/coding-standard": "^1.0",
  307. "phpstan/phpstan": "^0.11",
  308. "phpstan/phpstan-phpunit": "^0.11",
  309. "phpunit/phpunit": "^7.0",
  310. "squizlabs/php_codesniffer": "^3.0",
  311. "symfony/phpunit-bridge": "^4.0.5"
  312. },
  313. "type": "library",
  314. "extra": {
  315. "branch-alias": {
  316. "dev-master": "2.11.x-dev"
  317. }
  318. },
  319. "autoload": {
  320. "psr-4": {
  321. "Doctrine\\Common\\": "lib/Doctrine/Common"
  322. }
  323. },
  324. "notification-url": "https://packagist.org/downloads/",
  325. "license": [
  326. "MIT"
  327. ],
  328. "authors": [
  329. {
  330. "name": "Guilherme Blanco",
  331. "email": "guilhermeblanco@gmail.com"
  332. },
  333. {
  334. "name": "Roman Borschel",
  335. "email": "roman@code-factory.org"
  336. },
  337. {
  338. "name": "Benjamin Eberlei",
  339. "email": "kontakt@beberlei.de"
  340. },
  341. {
  342. "name": "Jonathan Wage",
  343. "email": "jonwage@gmail.com"
  344. },
  345. {
  346. "name": "Johannes Schmitt",
  347. "email": "schmittjoh@gmail.com"
  348. },
  349. {
  350. "name": "Marco Pivetta",
  351. "email": "ocramius@gmail.com"
  352. }
  353. ],
  354. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.",
  355. "homepage": "https://www.doctrine-project.org/projects/common.html",
  356. "keywords": [
  357. "common",
  358. "doctrine",
  359. "php"
  360. ],
  361. "time": "2020-06-05T16:46:05+00:00"
  362. },
  363. {
  364. "name": "doctrine/dbal",
  365. "version": "2.10.2",
  366. "source": {
  367. "type": "git",
  368. "url": "https://github.com/doctrine/dbal.git",
  369. "reference": "aab745e7b6b2de3b47019da81e7225e14dcfdac8"
  370. },
  371. "dist": {
  372. "type": "zip",
  373. "url": "https://api.github.com/repos/doctrine/dbal/zipball/aab745e7b6b2de3b47019da81e7225e14dcfdac8",
  374. "reference": "aab745e7b6b2de3b47019da81e7225e14dcfdac8",
  375. "shasum": ""
  376. },
  377. "require": {
  378. "doctrine/cache": "^1.0",
  379. "doctrine/event-manager": "^1.0",
  380. "ext-pdo": "*",
  381. "php": "^7.2"
  382. },
  383. "require-dev": {
  384. "doctrine/coding-standard": "^6.0",
  385. "jetbrains/phpstorm-stubs": "^2019.1",
  386. "nikic/php-parser": "^4.4",
  387. "phpstan/phpstan": "^0.12",
  388. "phpunit/phpunit": "^8.4.1",
  389. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  390. "vimeo/psalm": "^3.11"
  391. },
  392. "suggest": {
  393. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  394. },
  395. "bin": [
  396. "bin/doctrine-dbal"
  397. ],
  398. "type": "library",
  399. "extra": {
  400. "branch-alias": {
  401. "dev-master": "2.10.x-dev",
  402. "dev-develop": "3.0.x-dev"
  403. }
  404. },
  405. "autoload": {
  406. "psr-4": {
  407. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  408. }
  409. },
  410. "notification-url": "https://packagist.org/downloads/",
  411. "license": [
  412. "MIT"
  413. ],
  414. "authors": [
  415. {
  416. "name": "Guilherme Blanco",
  417. "email": "guilhermeblanco@gmail.com"
  418. },
  419. {
  420. "name": "Roman Borschel",
  421. "email": "roman@code-factory.org"
  422. },
  423. {
  424. "name": "Benjamin Eberlei",
  425. "email": "kontakt@beberlei.de"
  426. },
  427. {
  428. "name": "Jonathan Wage",
  429. "email": "jonwage@gmail.com"
  430. }
  431. ],
  432. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  433. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  434. "keywords": [
  435. "abstraction",
  436. "database",
  437. "db2",
  438. "dbal",
  439. "mariadb",
  440. "mssql",
  441. "mysql",
  442. "oci8",
  443. "oracle",
  444. "pdo",
  445. "pgsql",
  446. "postgresql",
  447. "queryobject",
  448. "sasql",
  449. "sql",
  450. "sqlanywhere",
  451. "sqlite",
  452. "sqlserver",
  453. "sqlsrv"
  454. ],
  455. "time": "2020-04-20T17:19:26+00:00"
  456. },
  457. {
  458. "name": "doctrine/doctrine-bundle",
  459. "version": "2.1.0",
  460. "source": {
  461. "type": "git",
  462. "url": "https://github.com/doctrine/DoctrineBundle.git",
  463. "reference": "0fb513842c78b43770597ef3c487cdf79d944db3"
  464. },
  465. "dist": {
  466. "type": "zip",
  467. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/0fb513842c78b43770597ef3c487cdf79d944db3",
  468. "reference": "0fb513842c78b43770597ef3c487cdf79d944db3",
  469. "shasum": ""
  470. },
  471. "require": {
  472. "doctrine/dbal": "^2.9.0",
  473. "doctrine/persistence": "^1.3.3",
  474. "doctrine/sql-formatter": "^1.0.1",
  475. "php": "^7.1 || ^8.0",
  476. "symfony/cache": "^4.3.3|^5.0",
  477. "symfony/config": "^4.3.3|^5.0",
  478. "symfony/console": "^3.4.30|^4.3.3|^5.0",
  479. "symfony/dependency-injection": "^4.3.3|^5.0",
  480. "symfony/doctrine-bridge": "^4.3.7|^5.0",
  481. "symfony/framework-bundle": "^3.4.30|^4.3.3|^5.0",
  482. "symfony/service-contracts": "^1.1.1|^2.0"
  483. },
  484. "conflict": {
  485. "doctrine/orm": "<2.6",
  486. "twig/twig": "<1.34|>=2.0,<2.4"
  487. },
  488. "require-dev": {
  489. "doctrine/coding-standard": "^6.0",
  490. "doctrine/orm": "^2.6",
  491. "ocramius/proxy-manager": "^2.1",
  492. "phpunit/phpunit": "^7.5",
  493. "symfony/phpunit-bridge": "^4.2",
  494. "symfony/property-info": "^4.3.3|^5.0",
  495. "symfony/proxy-manager-bridge": "^3.4|^4.3.3|^5.0",
  496. "symfony/twig-bridge": "^3.4.30|^4.3.3|^5.0",
  497. "symfony/validator": "^3.4.30|^4.3.3|^5.0",
  498. "symfony/web-profiler-bundle": "^3.4.30|^4.3.3|^5.0",
  499. "symfony/yaml": "^3.4.30|^4.3.3|^5.0",
  500. "twig/twig": "^1.34|^2.12"
  501. },
  502. "suggest": {
  503. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  504. "symfony/web-profiler-bundle": "To use the data collector."
  505. },
  506. "type": "symfony-bundle",
  507. "extra": {
  508. "branch-alias": {
  509. "dev-master": "2.1.x-dev"
  510. }
  511. },
  512. "autoload": {
  513. "psr-4": {
  514. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  515. }
  516. },
  517. "notification-url": "https://packagist.org/downloads/",
  518. "license": [
  519. "MIT"
  520. ],
  521. "authors": [
  522. {
  523. "name": "Fabien Potencier",
  524. "email": "fabien@symfony.com"
  525. },
  526. {
  527. "name": "Benjamin Eberlei",
  528. "email": "kontakt@beberlei.de"
  529. },
  530. {
  531. "name": "Symfony Community",
  532. "homepage": "http://symfony.com/contributors"
  533. },
  534. {
  535. "name": "Doctrine Project",
  536. "homepage": "http://www.doctrine-project.org/"
  537. }
  538. ],
  539. "description": "Symfony DoctrineBundle",
  540. "homepage": "http://www.doctrine-project.org",
  541. "keywords": [
  542. "database",
  543. "dbal",
  544. "orm",
  545. "persistence"
  546. ],
  547. "time": "2020-05-25T19:56:00+00:00"
  548. },
  549. {
  550. "name": "doctrine/doctrine-migrations-bundle",
  551. "version": "3.0.1",
  552. "source": {
  553. "type": "git",
  554. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  555. "reference": "96e730b0ffa0bb39c0f913c1966213f1674bf249"
  556. },
  557. "dist": {
  558. "type": "zip",
  559. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/96e730b0ffa0bb39c0f913c1966213f1674bf249",
  560. "reference": "96e730b0ffa0bb39c0f913c1966213f1674bf249",
  561. "shasum": ""
  562. },
  563. "require": {
  564. "doctrine/doctrine-bundle": "~1.0|~2.0",
  565. "doctrine/migrations": "~3.0",
  566. "php": "^7.2",
  567. "symfony/framework-bundle": "~3.4|~4.0|~5.0"
  568. },
  569. "require-dev": {
  570. "doctrine/coding-standard": "^5.0",
  571. "doctrine/orm": "^2.6",
  572. "phpstan/phpstan": "^0.11",
  573. "phpstan/phpstan-deprecation-rules": "^0.11",
  574. "phpstan/phpstan-phpunit": "^0.11",
  575. "phpstan/phpstan-strict-rules": "^0.11",
  576. "phpunit/phpunit": "^6.4|^7.0"
  577. },
  578. "type": "symfony-bundle",
  579. "extra": {
  580. "branch-alias": {
  581. "dev-master": "3.0.x-dev"
  582. }
  583. },
  584. "autoload": {
  585. "psr-4": {
  586. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  587. },
  588. "exclude-from-classmap": [
  589. "/Tests/"
  590. ]
  591. },
  592. "notification-url": "https://packagist.org/downloads/",
  593. "license": [
  594. "MIT"
  595. ],
  596. "authors": [
  597. {
  598. "name": "Fabien Potencier",
  599. "email": "fabien@symfony.com"
  600. },
  601. {
  602. "name": "Doctrine Project",
  603. "homepage": "http://www.doctrine-project.org"
  604. },
  605. {
  606. "name": "Symfony Community",
  607. "homepage": "http://symfony.com/contributors"
  608. }
  609. ],
  610. "description": "Symfony DoctrineMigrationsBundle",
  611. "homepage": "https://www.doctrine-project.org",
  612. "keywords": [
  613. "dbal",
  614. "migrations",
  615. "schema"
  616. ],
  617. "time": "2020-06-15T06:04:38+00:00"
  618. },
  619. {
  620. "name": "doctrine/event-manager",
  621. "version": "1.1.0",
  622. "source": {
  623. "type": "git",
  624. "url": "https://github.com/doctrine/event-manager.git",
  625. "reference": "629572819973f13486371cb611386eb17851e85c"
  626. },
  627. "dist": {
  628. "type": "zip",
  629. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/629572819973f13486371cb611386eb17851e85c",
  630. "reference": "629572819973f13486371cb611386eb17851e85c",
  631. "shasum": ""
  632. },
  633. "require": {
  634. "php": "^7.1"
  635. },
  636. "conflict": {
  637. "doctrine/common": "<2.9@dev"
  638. },
  639. "require-dev": {
  640. "doctrine/coding-standard": "^6.0",
  641. "phpunit/phpunit": "^7.0"
  642. },
  643. "type": "library",
  644. "extra": {
  645. "branch-alias": {
  646. "dev-master": "1.0.x-dev"
  647. }
  648. },
  649. "autoload": {
  650. "psr-4": {
  651. "Doctrine\\Common\\": "lib/Doctrine/Common"
  652. }
  653. },
  654. "notification-url": "https://packagist.org/downloads/",
  655. "license": [
  656. "MIT"
  657. ],
  658. "authors": [
  659. {
  660. "name": "Guilherme Blanco",
  661. "email": "guilhermeblanco@gmail.com"
  662. },
  663. {
  664. "name": "Roman Borschel",
  665. "email": "roman@code-factory.org"
  666. },
  667. {
  668. "name": "Benjamin Eberlei",
  669. "email": "kontakt@beberlei.de"
  670. },
  671. {
  672. "name": "Jonathan Wage",
  673. "email": "jonwage@gmail.com"
  674. },
  675. {
  676. "name": "Johannes Schmitt",
  677. "email": "schmittjoh@gmail.com"
  678. },
  679. {
  680. "name": "Marco Pivetta",
  681. "email": "ocramius@gmail.com"
  682. }
  683. ],
  684. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  685. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  686. "keywords": [
  687. "event",
  688. "event dispatcher",
  689. "event manager",
  690. "event system",
  691. "events"
  692. ],
  693. "time": "2019-11-10T09:48:07+00:00"
  694. },
  695. {
  696. "name": "doctrine/inflector",
  697. "version": "1.4.3",
  698. "source": {
  699. "type": "git",
  700. "url": "https://github.com/doctrine/inflector.git",
  701. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c"
  702. },
  703. "dist": {
  704. "type": "zip",
  705. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c",
  706. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c",
  707. "shasum": ""
  708. },
  709. "require": {
  710. "php": "^7.2 || ^8.0"
  711. },
  712. "require-dev": {
  713. "doctrine/coding-standard": "^7.0",
  714. "phpstan/phpstan": "^0.11",
  715. "phpstan/phpstan-phpunit": "^0.11",
  716. "phpstan/phpstan-strict-rules": "^0.11",
  717. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  718. },
  719. "type": "library",
  720. "extra": {
  721. "branch-alias": {
  722. "dev-master": "2.0.x-dev"
  723. }
  724. },
  725. "autoload": {
  726. "psr-4": {
  727. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
  728. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  729. }
  730. },
  731. "notification-url": "https://packagist.org/downloads/",
  732. "license": [
  733. "MIT"
  734. ],
  735. "authors": [
  736. {
  737. "name": "Guilherme Blanco",
  738. "email": "guilhermeblanco@gmail.com"
  739. },
  740. {
  741. "name": "Roman Borschel",
  742. "email": "roman@code-factory.org"
  743. },
  744. {
  745. "name": "Benjamin Eberlei",
  746. "email": "kontakt@beberlei.de"
  747. },
  748. {
  749. "name": "Jonathan Wage",
  750. "email": "jonwage@gmail.com"
  751. },
  752. {
  753. "name": "Johannes Schmitt",
  754. "email": "schmittjoh@gmail.com"
  755. }
  756. ],
  757. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  758. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  759. "keywords": [
  760. "inflection",
  761. "inflector",
  762. "lowercase",
  763. "manipulation",
  764. "php",
  765. "plural",
  766. "singular",
  767. "strings",
  768. "uppercase",
  769. "words"
  770. ],
  771. "time": "2020-05-29T07:19:59+00:00"
  772. },
  773. {
  774. "name": "doctrine/instantiator",
  775. "version": "1.3.1",
  776. "source": {
  777. "type": "git",
  778. "url": "https://github.com/doctrine/instantiator.git",
  779. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea"
  780. },
  781. "dist": {
  782. "type": "zip",
  783. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea",
  784. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea",
  785. "shasum": ""
  786. },
  787. "require": {
  788. "php": "^7.1 || ^8.0"
  789. },
  790. "require-dev": {
  791. "doctrine/coding-standard": "^6.0",
  792. "ext-pdo": "*",
  793. "ext-phar": "*",
  794. "phpbench/phpbench": "^0.13",
  795. "phpstan/phpstan-phpunit": "^0.11",
  796. "phpstan/phpstan-shim": "^0.11",
  797. "phpunit/phpunit": "^7.0"
  798. },
  799. "type": "library",
  800. "extra": {
  801. "branch-alias": {
  802. "dev-master": "1.2.x-dev"
  803. }
  804. },
  805. "autoload": {
  806. "psr-4": {
  807. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  808. }
  809. },
  810. "notification-url": "https://packagist.org/downloads/",
  811. "license": [
  812. "MIT"
  813. ],
  814. "authors": [
  815. {
  816. "name": "Marco Pivetta",
  817. "email": "ocramius@gmail.com",
  818. "homepage": "http://ocramius.github.com/"
  819. }
  820. ],
  821. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  822. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  823. "keywords": [
  824. "constructor",
  825. "instantiate"
  826. ],
  827. "time": "2020-05-29T17:27:14+00:00"
  828. },
  829. {
  830. "name": "doctrine/lexer",
  831. "version": "1.2.1",
  832. "source": {
  833. "type": "git",
  834. "url": "https://github.com/doctrine/lexer.git",
  835. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  836. },
  837. "dist": {
  838. "type": "zip",
  839. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  840. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  841. "shasum": ""
  842. },
  843. "require": {
  844. "php": "^7.2 || ^8.0"
  845. },
  846. "require-dev": {
  847. "doctrine/coding-standard": "^6.0",
  848. "phpstan/phpstan": "^0.11.8",
  849. "phpunit/phpunit": "^8.2"
  850. },
  851. "type": "library",
  852. "extra": {
  853. "branch-alias": {
  854. "dev-master": "1.2.x-dev"
  855. }
  856. },
  857. "autoload": {
  858. "psr-4": {
  859. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  860. }
  861. },
  862. "notification-url": "https://packagist.org/downloads/",
  863. "license": [
  864. "MIT"
  865. ],
  866. "authors": [
  867. {
  868. "name": "Guilherme Blanco",
  869. "email": "guilhermeblanco@gmail.com"
  870. },
  871. {
  872. "name": "Roman Borschel",
  873. "email": "roman@code-factory.org"
  874. },
  875. {
  876. "name": "Johannes Schmitt",
  877. "email": "schmittjoh@gmail.com"
  878. }
  879. ],
  880. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  881. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  882. "keywords": [
  883. "annotations",
  884. "docblock",
  885. "lexer",
  886. "parser",
  887. "php"
  888. ],
  889. "time": "2020-05-25T17:44:05+00:00"
  890. },
  891. {
  892. "name": "doctrine/migrations",
  893. "version": "3.0.1",
  894. "source": {
  895. "type": "git",
  896. "url": "https://github.com/doctrine/migrations.git",
  897. "reference": "69eaf2ca5bc48357b43ddbdc31ccdffc0e2a0882"
  898. },
  899. "dist": {
  900. "type": "zip",
  901. "url": "https://api.github.com/repos/doctrine/migrations/zipball/69eaf2ca5bc48357b43ddbdc31ccdffc0e2a0882",
  902. "reference": "69eaf2ca5bc48357b43ddbdc31ccdffc0e2a0882",
  903. "shasum": ""
  904. },
  905. "require": {
  906. "doctrine/dbal": "^2.10",
  907. "doctrine/event-manager": "^1.0",
  908. "ocramius/package-versions": "^1.3",
  909. "ocramius/proxy-manager": "^2.0.2",
  910. "php": "^7.2",
  911. "psr/log": "^1.1.3",
  912. "symfony/console": "^3.4||^4.0||^5.0",
  913. "symfony/stopwatch": "^3.4||^4.0||^5.0"
  914. },
  915. "require-dev": {
  916. "doctrine/coding-standard": "^7.0",
  917. "doctrine/orm": "^2.6",
  918. "doctrine/persistence": "^1.3||^2.0",
  919. "doctrine/sql-formatter": "^1.0",
  920. "ext-pdo_sqlite": "*",
  921. "phpstan/phpstan": "^0.12",
  922. "phpstan/phpstan-deprecation-rules": "^0.12",
  923. "phpstan/phpstan-phpunit": "^0.12",
  924. "phpstan/phpstan-strict-rules": "^0.12",
  925. "phpstan/phpstan-symfony": "^0.12",
  926. "phpunit/phpunit": "^8.4",
  927. "symfony/process": "^3.4||^4.0||^5.0",
  928. "symfony/yaml": "^3.4||^4.0||^5.0"
  929. },
  930. "suggest": {
  931. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  932. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  933. },
  934. "bin": [
  935. "bin/doctrine-migrations"
  936. ],
  937. "type": "library",
  938. "extra": {
  939. "branch-alias": {
  940. "dev-master": "3.0.x-dev"
  941. }
  942. },
  943. "autoload": {
  944. "psr-4": {
  945. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  946. }
  947. },
  948. "notification-url": "https://packagist.org/downloads/",
  949. "license": [
  950. "MIT"
  951. ],
  952. "authors": [
  953. {
  954. "name": "Benjamin Eberlei",
  955. "email": "kontakt@beberlei.de"
  956. },
  957. {
  958. "name": "Jonathan Wage",
  959. "email": "jonwage@gmail.com"
  960. },
  961. {
  962. "name": "Michael Simonson",
  963. "email": "contact@mikesimonson.com"
  964. }
  965. ],
  966. "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.",
  967. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  968. "keywords": [
  969. "database",
  970. "dbal",
  971. "migrations",
  972. "php"
  973. ],
  974. "time": "2020-06-21T08:55:42+00:00"
  975. },
  976. {
  977. "name": "doctrine/orm",
  978. "version": "v2.7.3",
  979. "source": {
  980. "type": "git",
  981. "url": "https://github.com/doctrine/orm.git",
  982. "reference": "d95e03ba660d50d785a9925f41927fef0ee553cf"
  983. },
  984. "dist": {
  985. "type": "zip",
  986. "url": "https://api.github.com/repos/doctrine/orm/zipball/d95e03ba660d50d785a9925f41927fef0ee553cf",
  987. "reference": "d95e03ba660d50d785a9925f41927fef0ee553cf",
  988. "shasum": ""
  989. },
  990. "require": {
  991. "doctrine/annotations": "^1.8",
  992. "doctrine/cache": "^1.9.1",
  993. "doctrine/collections": "^1.5",
  994. "doctrine/common": "^2.11 || ^3.0",
  995. "doctrine/dbal": "^2.9.3",
  996. "doctrine/event-manager": "^1.1",
  997. "doctrine/inflector": "^1.0",
  998. "doctrine/instantiator": "^1.3",
  999. "doctrine/lexer": "^1.0",
  1000. "doctrine/persistence": "^1.3.3 || ^2.0",
  1001. "ext-pdo": "*",
  1002. "ocramius/package-versions": "^1.2",
  1003. "php": "^7.1",
  1004. "symfony/console": "^3.0|^4.0|^5.0"
  1005. },
  1006. "require-dev": {
  1007. "doctrine/coding-standard": "^5.0",
  1008. "phpstan/phpstan": "^0.12.18",
  1009. "phpunit/phpunit": "^7.5",
  1010. "symfony/yaml": "^3.4|^4.0|^5.0",
  1011. "vimeo/psalm": "^3.11"
  1012. },
  1013. "suggest": {
  1014. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1015. },
  1016. "bin": [
  1017. "bin/doctrine"
  1018. ],
  1019. "type": "library",
  1020. "extra": {
  1021. "branch-alias": {
  1022. "dev-master": "2.7.x-dev"
  1023. }
  1024. },
  1025. "autoload": {
  1026. "psr-4": {
  1027. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1028. }
  1029. },
  1030. "notification-url": "https://packagist.org/downloads/",
  1031. "license": [
  1032. "MIT"
  1033. ],
  1034. "authors": [
  1035. {
  1036. "name": "Guilherme Blanco",
  1037. "email": "guilhermeblanco@gmail.com"
  1038. },
  1039. {
  1040. "name": "Roman Borschel",
  1041. "email": "roman@code-factory.org"
  1042. },
  1043. {
  1044. "name": "Benjamin Eberlei",
  1045. "email": "kontakt@beberlei.de"
  1046. },
  1047. {
  1048. "name": "Jonathan Wage",
  1049. "email": "jonwage@gmail.com"
  1050. },
  1051. {
  1052. "name": "Marco Pivetta",
  1053. "email": "ocramius@gmail.com"
  1054. }
  1055. ],
  1056. "description": "Object-Relational-Mapper for PHP",
  1057. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1058. "keywords": [
  1059. "database",
  1060. "orm"
  1061. ],
  1062. "time": "2020-05-26T16:03:49+00:00"
  1063. },
  1064. {
  1065. "name": "doctrine/persistence",
  1066. "version": "1.3.7",
  1067. "source": {
  1068. "type": "git",
  1069. "url": "https://github.com/doctrine/persistence.git",
  1070. "reference": "0af483f91bada1c9ded6c2cfd26ab7d5ab2094e0"
  1071. },
  1072. "dist": {
  1073. "type": "zip",
  1074. "url": "https://api.github.com/repos/doctrine/persistence/zipball/0af483f91bada1c9ded6c2cfd26ab7d5ab2094e0",
  1075. "reference": "0af483f91bada1c9ded6c2cfd26ab7d5ab2094e0",
  1076. "shasum": ""
  1077. },
  1078. "require": {
  1079. "doctrine/annotations": "^1.0",
  1080. "doctrine/cache": "^1.0",
  1081. "doctrine/collections": "^1.0",
  1082. "doctrine/event-manager": "^1.0",
  1083. "doctrine/reflection": "^1.2",
  1084. "php": "^7.1"
  1085. },
  1086. "conflict": {
  1087. "doctrine/common": "<2.10@dev"
  1088. },
  1089. "require-dev": {
  1090. "doctrine/coding-standard": "^6.0",
  1091. "phpstan/phpstan": "^0.11",
  1092. "phpunit/phpunit": "^7.0"
  1093. },
  1094. "type": "library",
  1095. "extra": {
  1096. "branch-alias": {
  1097. "dev-master": "1.3.x-dev"
  1098. }
  1099. },
  1100. "autoload": {
  1101. "psr-4": {
  1102. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1103. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1104. }
  1105. },
  1106. "notification-url": "https://packagist.org/downloads/",
  1107. "license": [
  1108. "MIT"
  1109. ],
  1110. "authors": [
  1111. {
  1112. "name": "Guilherme Blanco",
  1113. "email": "guilhermeblanco@gmail.com"
  1114. },
  1115. {
  1116. "name": "Roman Borschel",
  1117. "email": "roman@code-factory.org"
  1118. },
  1119. {
  1120. "name": "Benjamin Eberlei",
  1121. "email": "kontakt@beberlei.de"
  1122. },
  1123. {
  1124. "name": "Jonathan Wage",
  1125. "email": "jonwage@gmail.com"
  1126. },
  1127. {
  1128. "name": "Johannes Schmitt",
  1129. "email": "schmittjoh@gmail.com"
  1130. },
  1131. {
  1132. "name": "Marco Pivetta",
  1133. "email": "ocramius@gmail.com"
  1134. }
  1135. ],
  1136. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1137. "homepage": "https://doctrine-project.org/projects/persistence.html",
  1138. "keywords": [
  1139. "mapper",
  1140. "object",
  1141. "odm",
  1142. "orm",
  1143. "persistence"
  1144. ],
  1145. "time": "2020-03-21T15:13:52+00:00"
  1146. },
  1147. {
  1148. "name": "doctrine/reflection",
  1149. "version": "1.2.1",
  1150. "source": {
  1151. "type": "git",
  1152. "url": "https://github.com/doctrine/reflection.git",
  1153. "reference": "55e71912dfcd824b2fdd16f2d9afe15684cfce79"
  1154. },
  1155. "dist": {
  1156. "type": "zip",
  1157. "url": "https://api.github.com/repos/doctrine/reflection/zipball/55e71912dfcd824b2fdd16f2d9afe15684cfce79",
  1158. "reference": "55e71912dfcd824b2fdd16f2d9afe15684cfce79",
  1159. "shasum": ""
  1160. },
  1161. "require": {
  1162. "doctrine/annotations": "^1.0",
  1163. "ext-tokenizer": "*",
  1164. "php": "^7.1"
  1165. },
  1166. "conflict": {
  1167. "doctrine/common": "<2.9"
  1168. },
  1169. "require-dev": {
  1170. "doctrine/coding-standard": "^5.0",
  1171. "doctrine/common": "^2.10",
  1172. "phpstan/phpstan": "^0.11.0",
  1173. "phpstan/phpstan-phpunit": "^0.11.0",
  1174. "phpunit/phpunit": "^7.0"
  1175. },
  1176. "type": "library",
  1177. "extra": {
  1178. "branch-alias": {
  1179. "dev-master": "1.2.x-dev"
  1180. }
  1181. },
  1182. "autoload": {
  1183. "psr-4": {
  1184. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1185. }
  1186. },
  1187. "notification-url": "https://packagist.org/downloads/",
  1188. "license": [
  1189. "MIT"
  1190. ],
  1191. "authors": [
  1192. {
  1193. "name": "Guilherme Blanco",
  1194. "email": "guilhermeblanco@gmail.com"
  1195. },
  1196. {
  1197. "name": "Roman Borschel",
  1198. "email": "roman@code-factory.org"
  1199. },
  1200. {
  1201. "name": "Benjamin Eberlei",
  1202. "email": "kontakt@beberlei.de"
  1203. },
  1204. {
  1205. "name": "Jonathan Wage",
  1206. "email": "jonwage@gmail.com"
  1207. },
  1208. {
  1209. "name": "Johannes Schmitt",
  1210. "email": "schmittjoh@gmail.com"
  1211. },
  1212. {
  1213. "name": "Marco Pivetta",
  1214. "email": "ocramius@gmail.com"
  1215. }
  1216. ],
  1217. "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.",
  1218. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  1219. "keywords": [
  1220. "reflection",
  1221. "static"
  1222. ],
  1223. "time": "2020-03-27T11:06:43+00:00"
  1224. },
  1225. {
  1226. "name": "doctrine/sql-formatter",
  1227. "version": "1.1.1",
  1228. "source": {
  1229. "type": "git",
  1230. "url": "https://github.com/doctrine/sql-formatter.git",
  1231. "reference": "56070bebac6e77230ed7d306ad13528e60732871"
  1232. },
  1233. "dist": {
  1234. "type": "zip",
  1235. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/56070bebac6e77230ed7d306ad13528e60732871",
  1236. "reference": "56070bebac6e77230ed7d306ad13528e60732871",
  1237. "shasum": ""
  1238. },
  1239. "require": {
  1240. "php": "^7.1 || ^8.0"
  1241. },
  1242. "require-dev": {
  1243. "bamarni/composer-bin-plugin": "^1.4"
  1244. },
  1245. "bin": [
  1246. "bin/sql-formatter"
  1247. ],
  1248. "type": "library",
  1249. "extra": {
  1250. "branch-alias": {
  1251. "dev-master": "1.x-dev"
  1252. }
  1253. },
  1254. "autoload": {
  1255. "psr-4": {
  1256. "Doctrine\\SqlFormatter\\": "src"
  1257. }
  1258. },
  1259. "notification-url": "https://packagist.org/downloads/",
  1260. "license": [
  1261. "MIT"
  1262. ],
  1263. "authors": [
  1264. {
  1265. "name": "Jeremy Dorn",
  1266. "email": "jeremy@jeremydorn.com",
  1267. "homepage": "http://jeremydorn.com/"
  1268. }
  1269. ],
  1270. "description": "a PHP SQL highlighting library",
  1271. "homepage": "https://github.com/doctrine/sql-formatter/",
  1272. "keywords": [
  1273. "highlight",
  1274. "sql"
  1275. ],
  1276. "time": "2020-07-30T16:57:33+00:00"
  1277. },
  1278. {
  1279. "name": "egulias/email-validator",
  1280. "version": "2.1.18",
  1281. "source": {
  1282. "type": "git",
  1283. "url": "https://github.com/egulias/EmailValidator.git",
  1284. "reference": "cfa3d44471c7f5bfb684ac2b0da7114283d78441"
  1285. },
  1286. "dist": {
  1287. "type": "zip",
  1288. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/cfa3d44471c7f5bfb684ac2b0da7114283d78441",
  1289. "reference": "cfa3d44471c7f5bfb684ac2b0da7114283d78441",
  1290. "shasum": ""
  1291. },
  1292. "require": {
  1293. "doctrine/lexer": "^1.0.1",
  1294. "php": ">=5.5",
  1295. "symfony/polyfill-intl-idn": "^1.10"
  1296. },
  1297. "require-dev": {
  1298. "dominicsayers/isemail": "^3.0.7",
  1299. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1300. "satooshi/php-coveralls": "^1.0.1"
  1301. },
  1302. "suggest": {
  1303. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1304. },
  1305. "type": "library",
  1306. "extra": {
  1307. "branch-alias": {
  1308. "dev-master": "2.1.x-dev"
  1309. }
  1310. },
  1311. "autoload": {
  1312. "psr-4": {
  1313. "Egulias\\EmailValidator\\": "src"
  1314. }
  1315. },
  1316. "notification-url": "https://packagist.org/downloads/",
  1317. "license": [
  1318. "MIT"
  1319. ],
  1320. "authors": [
  1321. {
  1322. "name": "Eduardo Gulias Davis"
  1323. }
  1324. ],
  1325. "description": "A library for validating emails against several RFCs",
  1326. "homepage": "https://github.com/egulias/EmailValidator",
  1327. "keywords": [
  1328. "email",
  1329. "emailvalidation",
  1330. "emailvalidator",
  1331. "validation",
  1332. "validator"
  1333. ],
  1334. "time": "2020-06-16T20:11:17+00:00"
  1335. },
  1336. {
  1337. "name": "monolog/monolog",
  1338. "version": "2.1.1",
  1339. "source": {
  1340. "type": "git",
  1341. "url": "https://github.com/Seldaek/monolog.git",
  1342. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5"
  1343. },
  1344. "dist": {
  1345. "type": "zip",
  1346. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  1347. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  1348. "shasum": ""
  1349. },
  1350. "require": {
  1351. "php": ">=7.2",
  1352. "psr/log": "^1.0.1"
  1353. },
  1354. "provide": {
  1355. "psr/log-implementation": "1.0.0"
  1356. },
  1357. "require-dev": {
  1358. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1359. "doctrine/couchdb": "~1.0@dev",
  1360. "elasticsearch/elasticsearch": "^6.0",
  1361. "graylog2/gelf-php": "^1.4.2",
  1362. "php-amqplib/php-amqplib": "~2.4",
  1363. "php-console/php-console": "^3.1.3",
  1364. "php-parallel-lint/php-parallel-lint": "^1.0",
  1365. "phpspec/prophecy": "^1.6.1",
  1366. "phpunit/phpunit": "^8.5",
  1367. "predis/predis": "^1.1",
  1368. "rollbar/rollbar": "^1.3",
  1369. "ruflin/elastica": ">=0.90 <3.0",
  1370. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1371. },
  1372. "suggest": {
  1373. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1374. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1375. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1376. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1377. "ext-mbstring": "Allow to work properly with unicode symbols",
  1378. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1379. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1380. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1381. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1382. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1383. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1384. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1385. },
  1386. "type": "library",
  1387. "extra": {
  1388. "branch-alias": {
  1389. "dev-master": "2.x-dev"
  1390. }
  1391. },
  1392. "autoload": {
  1393. "psr-4": {
  1394. "Monolog\\": "src/Monolog"
  1395. }
  1396. },
  1397. "notification-url": "https://packagist.org/downloads/",
  1398. "license": [
  1399. "MIT"
  1400. ],
  1401. "authors": [
  1402. {
  1403. "name": "Jordi Boggiano",
  1404. "email": "j.boggiano@seld.be",
  1405. "homepage": "http://seld.be"
  1406. }
  1407. ],
  1408. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1409. "homepage": "http://github.com/Seldaek/monolog",
  1410. "keywords": [
  1411. "log",
  1412. "logging",
  1413. "psr-3"
  1414. ],
  1415. "time": "2020-07-23T08:41:23+00:00"
  1416. },
  1417. {
  1418. "name": "ocramius/proxy-manager",
  1419. "version": "2.0.4",
  1420. "source": {
  1421. "type": "git",
  1422. "url": "https://github.com/Ocramius/ProxyManager.git",
  1423. "reference": "a55d08229f4f614bf335759ed0cf63378feeb2e6"
  1424. },
  1425. "dist": {
  1426. "type": "zip",
  1427. "url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/a55d08229f4f614bf335759ed0cf63378feeb2e6",
  1428. "reference": "a55d08229f4f614bf335759ed0cf63378feeb2e6",
  1429. "shasum": ""
  1430. },
  1431. "require": {
  1432. "ocramius/package-versions": "^1.0",
  1433. "php": "7.0.0 - 7.0.5 || ^7.0.7",
  1434. "zendframework/zend-code": "3.0.0 - 3.0.2 || ^3.0.4"
  1435. },
  1436. "require-dev": {
  1437. "couscous/couscous": "^1.4.0",
  1438. "ext-phar": "*",
  1439. "phpbench/phpbench": "^0.11.2",
  1440. "phpunit/phpunit": "^5.4.6",
  1441. "squizlabs/php_codesniffer": "^2.6.0"
  1442. },
  1443. "suggest": {
  1444. "ocramius/generated-hydrator": "To have very fast object to array to object conversion for ghost objects",
  1445. "zendframework/zend-json": "To have the JsonRpc adapter (Remote Object feature)",
  1446. "zendframework/zend-soap": "To have the Soap adapter (Remote Object feature)",
  1447. "zendframework/zend-xmlrpc": "To have the XmlRpc adapter (Remote Object feature)"
  1448. },
  1449. "type": "library",
  1450. "extra": {
  1451. "branch-alias": {
  1452. "dev-master": "3.0.x-dev"
  1453. }
  1454. },
  1455. "autoload": {
  1456. "psr-0": {
  1457. "ProxyManager\\": "src"
  1458. }
  1459. },
  1460. "notification-url": "https://packagist.org/downloads/",
  1461. "license": [
  1462. "MIT"
  1463. ],
  1464. "authors": [
  1465. {
  1466. "name": "Marco Pivetta",
  1467. "email": "ocramius@gmail.com",
  1468. "homepage": "http://ocramius.github.io/"
  1469. }
  1470. ],
  1471. "description": "A library providing utilities to generate, instantiate and generally operate with Object Proxies",
  1472. "homepage": "https://github.com/Ocramius/ProxyManager",
  1473. "keywords": [
  1474. "aop",
  1475. "lazy loading",
  1476. "proxy",
  1477. "proxy pattern",
  1478. "service proxies"
  1479. ],
  1480. "time": "2016-11-04T15:53:15+00:00"
  1481. },
  1482. {
  1483. "name": "phpdocumentor/reflection-common",
  1484. "version": "2.2.0",
  1485. "source": {
  1486. "type": "git",
  1487. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1488. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  1489. },
  1490. "dist": {
  1491. "type": "zip",
  1492. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1493. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1494. "shasum": ""
  1495. },
  1496. "require": {
  1497. "php": "^7.2 || ^8.0"
  1498. },
  1499. "type": "library",
  1500. "extra": {
  1501. "branch-alias": {
  1502. "dev-2.x": "2.x-dev"
  1503. }
  1504. },
  1505. "autoload": {
  1506. "psr-4": {
  1507. "phpDocumentor\\Reflection\\": "src/"
  1508. }
  1509. },
  1510. "notification-url": "https://packagist.org/downloads/",
  1511. "license": [
  1512. "MIT"
  1513. ],
  1514. "authors": [
  1515. {
  1516. "name": "Jaap van Otterdijk",
  1517. "email": "opensource@ijaap.nl"
  1518. }
  1519. ],
  1520. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1521. "homepage": "http://www.phpdoc.org",
  1522. "keywords": [
  1523. "FQSEN",
  1524. "phpDocumentor",
  1525. "phpdoc",
  1526. "reflection",
  1527. "static analysis"
  1528. ],
  1529. "time": "2020-06-27T09:03:43+00:00"
  1530. },
  1531. {
  1532. "name": "phpdocumentor/reflection-docblock",
  1533. "version": "5.2.0",
  1534. "source": {
  1535. "type": "git",
  1536. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1537. "reference": "3170448f5769fe19f456173d833734e0ff1b84df"
  1538. },
  1539. "dist": {
  1540. "type": "zip",
  1541. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/3170448f5769fe19f456173d833734e0ff1b84df",
  1542. "reference": "3170448f5769fe19f456173d833734e0ff1b84df",
  1543. "shasum": ""
  1544. },
  1545. "require": {
  1546. "ext-filter": "*",
  1547. "php": "^7.2 || ^8.0",
  1548. "phpdocumentor/reflection-common": "^2.2",
  1549. "phpdocumentor/type-resolver": "^1.3",
  1550. "webmozart/assert": "^1.9.1"
  1551. },
  1552. "require-dev": {
  1553. "mockery/mockery": "~1.3.2"
  1554. },
  1555. "type": "library",
  1556. "extra": {
  1557. "branch-alias": {
  1558. "dev-master": "5.x-dev"
  1559. }
  1560. },
  1561. "autoload": {
  1562. "psr-4": {
  1563. "phpDocumentor\\Reflection\\": "src"
  1564. }
  1565. },
  1566. "notification-url": "https://packagist.org/downloads/",
  1567. "license": [
  1568. "MIT"
  1569. ],
  1570. "authors": [
  1571. {
  1572. "name": "Mike van Riel",
  1573. "email": "me@mikevanriel.com"
  1574. },
  1575. {
  1576. "name": "Jaap van Otterdijk",
  1577. "email": "account@ijaap.nl"
  1578. }
  1579. ],
  1580. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1581. "time": "2020-07-20T20:05:34+00:00"
  1582. },
  1583. {
  1584. "name": "phpdocumentor/type-resolver",
  1585. "version": "1.3.0",
  1586. "source": {
  1587. "type": "git",
  1588. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1589. "reference": "e878a14a65245fbe78f8080eba03b47c3b705651"
  1590. },
  1591. "dist": {
  1592. "type": "zip",
  1593. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e878a14a65245fbe78f8080eba03b47c3b705651",
  1594. "reference": "e878a14a65245fbe78f8080eba03b47c3b705651",
  1595. "shasum": ""
  1596. },
  1597. "require": {
  1598. "php": "^7.2 || ^8.0",
  1599. "phpdocumentor/reflection-common": "^2.0"
  1600. },
  1601. "require-dev": {
  1602. "ext-tokenizer": "*"
  1603. },
  1604. "type": "library",
  1605. "extra": {
  1606. "branch-alias": {
  1607. "dev-1.x": "1.x-dev"
  1608. }
  1609. },
  1610. "autoload": {
  1611. "psr-4": {
  1612. "phpDocumentor\\Reflection\\": "src"
  1613. }
  1614. },
  1615. "notification-url": "https://packagist.org/downloads/",
  1616. "license": [
  1617. "MIT"
  1618. ],
  1619. "authors": [
  1620. {
  1621. "name": "Mike van Riel",
  1622. "email": "me@mikevanriel.com"
  1623. }
  1624. ],
  1625. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  1626. "time": "2020-06-27T10:12:23+00:00"
  1627. },
  1628. {
  1629. "name": "psr/cache",
  1630. "version": "1.0.1",
  1631. "source": {
  1632. "type": "git",
  1633. "url": "https://github.com/php-fig/cache.git",
  1634. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1635. },
  1636. "dist": {
  1637. "type": "zip",
  1638. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1639. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1640. "shasum": ""
  1641. },
  1642. "require": {
  1643. "php": ">=5.3.0"
  1644. },
  1645. "type": "library",
  1646. "extra": {
  1647. "branch-alias": {
  1648. "dev-master": "1.0.x-dev"
  1649. }
  1650. },
  1651. "autoload": {
  1652. "psr-4": {
  1653. "Psr\\Cache\\": "src/"
  1654. }
  1655. },
  1656. "notification-url": "https://packagist.org/downloads/",
  1657. "license": [
  1658. "MIT"
  1659. ],
  1660. "authors": [
  1661. {
  1662. "name": "PHP-FIG",
  1663. "homepage": "http://www.php-fig.org/"
  1664. }
  1665. ],
  1666. "description": "Common interface for caching libraries",
  1667. "keywords": [
  1668. "cache",
  1669. "psr",
  1670. "psr-6"
  1671. ],
  1672. "time": "2016-08-06T20:24:11+00:00"
  1673. },
  1674. {
  1675. "name": "psr/container",
  1676. "version": "1.0.0",
  1677. "source": {
  1678. "type": "git",
  1679. "url": "https://github.com/php-fig/container.git",
  1680. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1681. },
  1682. "dist": {
  1683. "type": "zip",
  1684. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1685. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1686. "shasum": ""
  1687. },
  1688. "require": {
  1689. "php": ">=5.3.0"
  1690. },
  1691. "type": "library",
  1692. "extra": {
  1693. "branch-alias": {
  1694. "dev-master": "1.0.x-dev"
  1695. }
  1696. },
  1697. "autoload": {
  1698. "psr-4": {
  1699. "Psr\\Container\\": "src/"
  1700. }
  1701. },
  1702. "notification-url": "https://packagist.org/downloads/",
  1703. "license": [
  1704. "MIT"
  1705. ],
  1706. "authors": [
  1707. {
  1708. "name": "PHP-FIG",
  1709. "homepage": "http://www.php-fig.org/"
  1710. }
  1711. ],
  1712. "description": "Common Container Interface (PHP FIG PSR-11)",
  1713. "homepage": "https://github.com/php-fig/container",
  1714. "keywords": [
  1715. "PSR-11",
  1716. "container",
  1717. "container-interface",
  1718. "container-interop",
  1719. "psr"
  1720. ],
  1721. "time": "2017-02-14T16:28:37+00:00"
  1722. },
  1723. {
  1724. "name": "psr/event-dispatcher",
  1725. "version": "1.0.0",
  1726. "source": {
  1727. "type": "git",
  1728. "url": "https://github.com/php-fig/event-dispatcher.git",
  1729. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1730. },
  1731. "dist": {
  1732. "type": "zip",
  1733. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1734. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1735. "shasum": ""
  1736. },
  1737. "require": {
  1738. "php": ">=7.2.0"
  1739. },
  1740. "type": "library",
  1741. "extra": {
  1742. "branch-alias": {
  1743. "dev-master": "1.0.x-dev"
  1744. }
  1745. },
  1746. "autoload": {
  1747. "psr-4": {
  1748. "Psr\\EventDispatcher\\": "src/"
  1749. }
  1750. },
  1751. "notification-url": "https://packagist.org/downloads/",
  1752. "license": [
  1753. "MIT"
  1754. ],
  1755. "authors": [
  1756. {
  1757. "name": "PHP-FIG",
  1758. "homepage": "http://www.php-fig.org/"
  1759. }
  1760. ],
  1761. "description": "Standard interfaces for event handling.",
  1762. "keywords": [
  1763. "events",
  1764. "psr",
  1765. "psr-14"
  1766. ],
  1767. "time": "2019-01-08T18:20:26+00:00"
  1768. },
  1769. {
  1770. "name": "psr/link",
  1771. "version": "1.0.0",
  1772. "source": {
  1773. "type": "git",
  1774. "url": "https://github.com/php-fig/link.git",
  1775. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562"
  1776. },
  1777. "dist": {
  1778. "type": "zip",
  1779. "url": "https://api.github.com/repos/php-fig/link/zipball/eea8e8662d5cd3ae4517c9b864493f59fca95562",
  1780. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562",
  1781. "shasum": ""
  1782. },
  1783. "require": {
  1784. "php": ">=5.3.0"
  1785. },
  1786. "type": "library",
  1787. "extra": {
  1788. "branch-alias": {
  1789. "dev-master": "1.0.x-dev"
  1790. }
  1791. },
  1792. "autoload": {
  1793. "psr-4": {
  1794. "Psr\\Link\\": "src/"
  1795. }
  1796. },
  1797. "notification-url": "https://packagist.org/downloads/",
  1798. "license": [
  1799. "MIT"
  1800. ],
  1801. "authors": [
  1802. {
  1803. "name": "PHP-FIG",
  1804. "homepage": "http://www.php-fig.org/"
  1805. }
  1806. ],
  1807. "description": "Common interfaces for HTTP links",
  1808. "keywords": [
  1809. "http",
  1810. "http-link",
  1811. "link",
  1812. "psr",
  1813. "psr-13",
  1814. "rest"
  1815. ],
  1816. "time": "2016-10-28T16:06:13+00:00"
  1817. },
  1818. {
  1819. "name": "psr/log",
  1820. "version": "1.1.3",
  1821. "source": {
  1822. "type": "git",
  1823. "url": "https://github.com/php-fig/log.git",
  1824. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  1825. },
  1826. "dist": {
  1827. "type": "zip",
  1828. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  1829. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  1830. "shasum": ""
  1831. },
  1832. "require": {
  1833. "php": ">=5.3.0"
  1834. },
  1835. "type": "library",
  1836. "extra": {
  1837. "branch-alias": {
  1838. "dev-master": "1.1.x-dev"
  1839. }
  1840. },
  1841. "autoload": {
  1842. "psr-4": {
  1843. "Psr\\Log\\": "Psr/Log/"
  1844. }
  1845. },
  1846. "notification-url": "https://packagist.org/downloads/",
  1847. "license": [
  1848. "MIT"
  1849. ],
  1850. "authors": [
  1851. {
  1852. "name": "PHP-FIG",
  1853. "homepage": "http://www.php-fig.org/"
  1854. }
  1855. ],
  1856. "description": "Common interface for logging libraries",
  1857. "homepage": "https://github.com/php-fig/log",
  1858. "keywords": [
  1859. "log",
  1860. "psr",
  1861. "psr-3"
  1862. ],
  1863. "time": "2020-03-23T09:12:05+00:00"
  1864. },
  1865. {
  1866. "name": "sensio/framework-extra-bundle",
  1867. "version": "v5.5.6",
  1868. "source": {
  1869. "type": "git",
  1870. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  1871. "reference": "b49f079d8a87a6e6dd434062085ff5a132af466b"
  1872. },
  1873. "dist": {
  1874. "type": "zip",
  1875. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/b49f079d8a87a6e6dd434062085ff5a132af466b",
  1876. "reference": "b49f079d8a87a6e6dd434062085ff5a132af466b",
  1877. "shasum": ""
  1878. },
  1879. "require": {
  1880. "doctrine/annotations": "^1.0",
  1881. "php": ">=7.1.3",
  1882. "symfony/config": "^4.4|^5.0",
  1883. "symfony/dependency-injection": "^4.4|^5.0",
  1884. "symfony/framework-bundle": "^4.4|^5.0",
  1885. "symfony/http-kernel": "^4.4|^5.0"
  1886. },
  1887. "conflict": {
  1888. "doctrine/doctrine-cache-bundle": "<1.3.1"
  1889. },
  1890. "require-dev": {
  1891. "doctrine/doctrine-bundle": "^1.11|^2.0",
  1892. "doctrine/orm": "^2.5",
  1893. "nyholm/psr7": "^1.1",
  1894. "symfony/browser-kit": "^4.4|^5.0",
  1895. "symfony/dom-crawler": "^4.4|^5.0",
  1896. "symfony/expression-language": "^4.4|^5.0",
  1897. "symfony/finder": "^4.4|^5.0",
  1898. "symfony/monolog-bridge": "^4.0|^5.0",
  1899. "symfony/monolog-bundle": "^3.2",
  1900. "symfony/phpunit-bridge": "^4.3.5|^5.0",
  1901. "symfony/psr-http-message-bridge": "^1.1",
  1902. "symfony/security-bundle": "^4.4|^5.0",
  1903. "symfony/twig-bundle": "^4.4|^5.0",
  1904. "symfony/yaml": "^4.4|^5.0",
  1905. "twig/twig": "^1.34|^2.4|^3.0"
  1906. },
  1907. "type": "symfony-bundle",
  1908. "extra": {
  1909. "branch-alias": {
  1910. "dev-master": "5.5.x-dev"
  1911. }
  1912. },
  1913. "autoload": {
  1914. "psr-4": {
  1915. "Sensio\\Bundle\\FrameworkExtraBundle\\": "src/"
  1916. },
  1917. "exclude-from-classmap": [
  1918. "/tests/"
  1919. ]
  1920. },
  1921. "notification-url": "https://packagist.org/downloads/",
  1922. "license": [
  1923. "MIT"
  1924. ],
  1925. "authors": [
  1926. {
  1927. "name": "Fabien Potencier",
  1928. "email": "fabien@symfony.com"
  1929. }
  1930. ],
  1931. "description": "This bundle provides a way to configure your controllers with annotations",
  1932. "keywords": [
  1933. "annotations",
  1934. "controllers"
  1935. ],
  1936. "time": "2020-06-15T20:28:02+00:00"
  1937. },
  1938. {
  1939. "name": "swiftmailer/swiftmailer",
  1940. "version": "v6.2.3",
  1941. "source": {
  1942. "type": "git",
  1943. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1944. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  1945. },
  1946. "dist": {
  1947. "type": "zip",
  1948. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  1949. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  1950. "shasum": ""
  1951. },
  1952. "require": {
  1953. "egulias/email-validator": "~2.0",
  1954. "php": ">=7.0.0",
  1955. "symfony/polyfill-iconv": "^1.0",
  1956. "symfony/polyfill-intl-idn": "^1.10",
  1957. "symfony/polyfill-mbstring": "^1.0"
  1958. },
  1959. "require-dev": {
  1960. "mockery/mockery": "~0.9.1",
  1961. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  1962. },
  1963. "suggest": {
  1964. "ext-intl": "Needed to support internationalized email addresses",
  1965. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  1966. },
  1967. "type": "library",
  1968. "extra": {
  1969. "branch-alias": {
  1970. "dev-master": "6.2-dev"
  1971. }
  1972. },
  1973. "autoload": {
  1974. "files": [
  1975. "lib/swift_required.php"
  1976. ]
  1977. },
  1978. "notification-url": "https://packagist.org/downloads/",
  1979. "license": [
  1980. "MIT"
  1981. ],
  1982. "authors": [
  1983. {
  1984. "name": "Chris Corbyn"
  1985. },
  1986. {
  1987. "name": "Fabien Potencier",
  1988. "email": "fabien@symfony.com"
  1989. }
  1990. ],
  1991. "description": "Swiftmailer, free feature-rich PHP mailer",
  1992. "homepage": "https://swiftmailer.symfony.com",
  1993. "keywords": [
  1994. "email",
  1995. "mail",
  1996. "mailer"
  1997. ],
  1998. "time": "2019-11-12T09:31:26+00:00"
  1999. },
  2000. {
  2001. "name": "symfony/apache-pack",
  2002. "version": "v1.0.1",
  2003. "source": {
  2004. "type": "git",
  2005. "url": "https://github.com/symfony/apache-pack.git",
  2006. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  2007. },
  2008. "dist": {
  2009. "type": "zip",
  2010. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2011. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2012. "shasum": ""
  2013. },
  2014. "type": "symfony-pack",
  2015. "notification-url": "https://packagist.org/downloads/",
  2016. "license": [
  2017. "MIT"
  2018. ],
  2019. "description": "A pack for Apache support in Symfony",
  2020. "time": "2017-12-12T01:46:35+00:00"
  2021. },
  2022. {
  2023. "name": "symfony/asset",
  2024. "version": "v5.1.3",
  2025. "source": {
  2026. "type": "git",
  2027. "url": "https://github.com/symfony/asset.git",
  2028. "reference": "2f07b5993f1607c1c489bac3e15a000c33668b4b"
  2029. },
  2030. "dist": {
  2031. "type": "zip",
  2032. "url": "https://api.github.com/repos/symfony/asset/zipball/2f07b5993f1607c1c489bac3e15a000c33668b4b",
  2033. "reference": "2f07b5993f1607c1c489bac3e15a000c33668b4b",
  2034. "shasum": ""
  2035. },
  2036. "require": {
  2037. "php": ">=7.2.5"
  2038. },
  2039. "require-dev": {
  2040. "symfony/http-client": "^4.4|^5.0",
  2041. "symfony/http-foundation": "^4.4|^5.0",
  2042. "symfony/http-kernel": "^4.4|^5.0"
  2043. },
  2044. "suggest": {
  2045. "symfony/http-foundation": ""
  2046. },
  2047. "type": "library",
  2048. "extra": {
  2049. "branch-alias": {
  2050. "dev-master": "5.1-dev"
  2051. }
  2052. },
  2053. "autoload": {
  2054. "psr-4": {
  2055. "Symfony\\Component\\Asset\\": ""
  2056. },
  2057. "exclude-from-classmap": [
  2058. "/Tests/"
  2059. ]
  2060. },
  2061. "notification-url": "https://packagist.org/downloads/",
  2062. "license": [
  2063. "MIT"
  2064. ],
  2065. "authors": [
  2066. {
  2067. "name": "Fabien Potencier",
  2068. "email": "fabien@symfony.com"
  2069. },
  2070. {
  2071. "name": "Symfony Community",
  2072. "homepage": "https://symfony.com/contributors"
  2073. }
  2074. ],
  2075. "description": "Symfony Asset Component",
  2076. "homepage": "https://symfony.com",
  2077. "time": "2020-05-30T20:35:19+00:00"
  2078. },
  2079. {
  2080. "name": "symfony/cache",
  2081. "version": "v5.1.3",
  2082. "source": {
  2083. "type": "git",
  2084. "url": "https://github.com/symfony/cache.git",
  2085. "reference": "a9ac09a5e9786b734a4baa98158c2cd3251f1e4c"
  2086. },
  2087. "dist": {
  2088. "type": "zip",
  2089. "url": "https://api.github.com/repos/symfony/cache/zipball/a9ac09a5e9786b734a4baa98158c2cd3251f1e4c",
  2090. "reference": "a9ac09a5e9786b734a4baa98158c2cd3251f1e4c",
  2091. "shasum": ""
  2092. },
  2093. "require": {
  2094. "php": ">=7.2.5",
  2095. "psr/cache": "~1.0",
  2096. "psr/log": "~1.0",
  2097. "symfony/cache-contracts": "^1.1.7|^2",
  2098. "symfony/polyfill-php80": "^1.15",
  2099. "symfony/service-contracts": "^1.1|^2",
  2100. "symfony/var-exporter": "^4.4|^5.0"
  2101. },
  2102. "conflict": {
  2103. "doctrine/dbal": "<2.5",
  2104. "symfony/dependency-injection": "<4.4",
  2105. "symfony/http-kernel": "<4.4",
  2106. "symfony/var-dumper": "<4.4"
  2107. },
  2108. "provide": {
  2109. "psr/cache-implementation": "1.0",
  2110. "psr/simple-cache-implementation": "1.0",
  2111. "symfony/cache-implementation": "1.0"
  2112. },
  2113. "require-dev": {
  2114. "cache/integration-tests": "dev-master",
  2115. "doctrine/cache": "^1.6",
  2116. "doctrine/dbal": "^2.5|^3.0",
  2117. "predis/predis": "^1.1",
  2118. "psr/simple-cache": "^1.0",
  2119. "symfony/config": "^4.4|^5.0",
  2120. "symfony/dependency-injection": "^4.4|^5.0",
  2121. "symfony/var-dumper": "^4.4|^5.0"
  2122. },
  2123. "type": "library",
  2124. "extra": {
  2125. "branch-alias": {
  2126. "dev-master": "5.1-dev"
  2127. }
  2128. },
  2129. "autoload": {
  2130. "psr-4": {
  2131. "Symfony\\Component\\Cache\\": ""
  2132. },
  2133. "exclude-from-classmap": [
  2134. "/Tests/"
  2135. ]
  2136. },
  2137. "notification-url": "https://packagist.org/downloads/",
  2138. "license": [
  2139. "MIT"
  2140. ],
  2141. "authors": [
  2142. {
  2143. "name": "Nicolas Grekas",
  2144. "email": "p@tchwork.com"
  2145. },
  2146. {
  2147. "name": "Symfony Community",
  2148. "homepage": "https://symfony.com/contributors"
  2149. }
  2150. ],
  2151. "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
  2152. "homepage": "https://symfony.com",
  2153. "keywords": [
  2154. "caching",
  2155. "psr6"
  2156. ],
  2157. "time": "2020-07-23T17:22:30+00:00"
  2158. },
  2159. {
  2160. "name": "symfony/cache-contracts",
  2161. "version": "v2.1.3",
  2162. "source": {
  2163. "type": "git",
  2164. "url": "https://github.com/symfony/cache-contracts.git",
  2165. "reference": "9771a09d2e6b84ecb8c9f0a7dbc72ee92aeba009"
  2166. },
  2167. "dist": {
  2168. "type": "zip",
  2169. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/9771a09d2e6b84ecb8c9f0a7dbc72ee92aeba009",
  2170. "reference": "9771a09d2e6b84ecb8c9f0a7dbc72ee92aeba009",
  2171. "shasum": ""
  2172. },
  2173. "require": {
  2174. "php": ">=7.2.5",
  2175. "psr/cache": "^1.0"
  2176. },
  2177. "suggest": {
  2178. "symfony/cache-implementation": ""
  2179. },
  2180. "type": "library",
  2181. "extra": {
  2182. "branch-alias": {
  2183. "dev-master": "2.1-dev"
  2184. },
  2185. "thanks": {
  2186. "name": "symfony/contracts",
  2187. "url": "https://github.com/symfony/contracts"
  2188. }
  2189. },
  2190. "autoload": {
  2191. "psr-4": {
  2192. "Symfony\\Contracts\\Cache\\": ""
  2193. }
  2194. },
  2195. "notification-url": "https://packagist.org/downloads/",
  2196. "license": [
  2197. "MIT"
  2198. ],
  2199. "authors": [
  2200. {
  2201. "name": "Nicolas Grekas",
  2202. "email": "p@tchwork.com"
  2203. },
  2204. {
  2205. "name": "Symfony Community",
  2206. "homepage": "https://symfony.com/contributors"
  2207. }
  2208. ],
  2209. "description": "Generic abstractions related to caching",
  2210. "homepage": "https://symfony.com",
  2211. "keywords": [
  2212. "abstractions",
  2213. "contracts",
  2214. "decoupling",
  2215. "interfaces",
  2216. "interoperability",
  2217. "standards"
  2218. ],
  2219. "time": "2020-07-06T13:23:11+00:00"
  2220. },
  2221. {
  2222. "name": "symfony/config",
  2223. "version": "v5.1.3",
  2224. "source": {
  2225. "type": "git",
  2226. "url": "https://github.com/symfony/config.git",
  2227. "reference": "cf63f0613a6c6918e96db39c07a43b01e19a0773"
  2228. },
  2229. "dist": {
  2230. "type": "zip",
  2231. "url": "https://api.github.com/repos/symfony/config/zipball/cf63f0613a6c6918e96db39c07a43b01e19a0773",
  2232. "reference": "cf63f0613a6c6918e96db39c07a43b01e19a0773",
  2233. "shasum": ""
  2234. },
  2235. "require": {
  2236. "php": ">=7.2.5",
  2237. "symfony/deprecation-contracts": "^2.1",
  2238. "symfony/filesystem": "^4.4|^5.0",
  2239. "symfony/polyfill-ctype": "~1.8",
  2240. "symfony/polyfill-php80": "^1.15"
  2241. },
  2242. "conflict": {
  2243. "symfony/finder": "<4.4"
  2244. },
  2245. "require-dev": {
  2246. "symfony/event-dispatcher": "^4.4|^5.0",
  2247. "symfony/finder": "^4.4|^5.0",
  2248. "symfony/messenger": "^4.4|^5.0",
  2249. "symfony/service-contracts": "^1.1|^2",
  2250. "symfony/yaml": "^4.4|^5.0"
  2251. },
  2252. "suggest": {
  2253. "symfony/yaml": "To use the yaml reference dumper"
  2254. },
  2255. "type": "library",
  2256. "extra": {
  2257. "branch-alias": {
  2258. "dev-master": "5.1-dev"
  2259. }
  2260. },
  2261. "autoload": {
  2262. "psr-4": {
  2263. "Symfony\\Component\\Config\\": ""
  2264. },
  2265. "exclude-from-classmap": [
  2266. "/Tests/"
  2267. ]
  2268. },
  2269. "notification-url": "https://packagist.org/downloads/",
  2270. "license": [
  2271. "MIT"
  2272. ],
  2273. "authors": [
  2274. {
  2275. "name": "Fabien Potencier",
  2276. "email": "fabien@symfony.com"
  2277. },
  2278. {
  2279. "name": "Symfony Community",
  2280. "homepage": "https://symfony.com/contributors"
  2281. }
  2282. ],
  2283. "description": "Symfony Config Component",
  2284. "homepage": "https://symfony.com",
  2285. "time": "2020-07-15T10:53:22+00:00"
  2286. },
  2287. {
  2288. "name": "symfony/console",
  2289. "version": "v5.1.3",
  2290. "source": {
  2291. "type": "git",
  2292. "url": "https://github.com/symfony/console.git",
  2293. "reference": "2226c68009627934b8cfc01260b4d287eab070df"
  2294. },
  2295. "dist": {
  2296. "type": "zip",
  2297. "url": "https://api.github.com/repos/symfony/console/zipball/2226c68009627934b8cfc01260b4d287eab070df",
  2298. "reference": "2226c68009627934b8cfc01260b4d287eab070df",
  2299. "shasum": ""
  2300. },
  2301. "require": {
  2302. "php": ">=7.2.5",
  2303. "symfony/polyfill-mbstring": "~1.0",
  2304. "symfony/polyfill-php73": "^1.8",
  2305. "symfony/polyfill-php80": "^1.15",
  2306. "symfony/service-contracts": "^1.1|^2",
  2307. "symfony/string": "^5.1"
  2308. },
  2309. "conflict": {
  2310. "symfony/dependency-injection": "<4.4",
  2311. "symfony/dotenv": "<5.1",
  2312. "symfony/event-dispatcher": "<4.4",
  2313. "symfony/lock": "<4.4",
  2314. "symfony/process": "<4.4"
  2315. },
  2316. "provide": {
  2317. "psr/log-implementation": "1.0"
  2318. },
  2319. "require-dev": {
  2320. "psr/log": "~1.0",
  2321. "symfony/config": "^4.4|^5.0",
  2322. "symfony/dependency-injection": "^4.4|^5.0",
  2323. "symfony/event-dispatcher": "^4.4|^5.0",
  2324. "symfony/lock": "^4.4|^5.0",
  2325. "symfony/process": "^4.4|^5.0",
  2326. "symfony/var-dumper": "^4.4|^5.0"
  2327. },
  2328. "suggest": {
  2329. "psr/log": "For using the console logger",
  2330. "symfony/event-dispatcher": "",
  2331. "symfony/lock": "",
  2332. "symfony/process": ""
  2333. },
  2334. "type": "library",
  2335. "extra": {
  2336. "branch-alias": {
  2337. "dev-master": "5.1-dev"
  2338. }
  2339. },
  2340. "autoload": {
  2341. "psr-4": {
  2342. "Symfony\\Component\\Console\\": ""
  2343. },
  2344. "exclude-from-classmap": [
  2345. "/Tests/"
  2346. ]
  2347. },
  2348. "notification-url": "https://packagist.org/downloads/",
  2349. "license": [
  2350. "MIT"
  2351. ],
  2352. "authors": [
  2353. {
  2354. "name": "Fabien Potencier",
  2355. "email": "fabien@symfony.com"
  2356. },
  2357. {
  2358. "name": "Symfony Community",
  2359. "homepage": "https://symfony.com/contributors"
  2360. }
  2361. ],
  2362. "description": "Symfony Console Component",
  2363. "homepage": "https://symfony.com",
  2364. "time": "2020-07-06T13:23:11+00:00"
  2365. },
  2366. {
  2367. "name": "symfony/dependency-injection",
  2368. "version": "v5.1.3",
  2369. "source": {
  2370. "type": "git",
  2371. "url": "https://github.com/symfony/dependency-injection.git",
  2372. "reference": "c45c3f26d2ae7c5239e5ad420b0c2717dbbc0bcb"
  2373. },
  2374. "dist": {
  2375. "type": "zip",
  2376. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/c45c3f26d2ae7c5239e5ad420b0c2717dbbc0bcb",
  2377. "reference": "c45c3f26d2ae7c5239e5ad420b0c2717dbbc0bcb",
  2378. "shasum": ""
  2379. },
  2380. "require": {
  2381. "php": ">=7.2.5",
  2382. "psr/container": "^1.0",
  2383. "symfony/deprecation-contracts": "^2.1",
  2384. "symfony/polyfill-php80": "^1.15",
  2385. "symfony/service-contracts": "^1.1.6|^2"
  2386. },
  2387. "conflict": {
  2388. "symfony/config": "<5.1",
  2389. "symfony/finder": "<4.4",
  2390. "symfony/proxy-manager-bridge": "<4.4",
  2391. "symfony/yaml": "<4.4"
  2392. },
  2393. "provide": {
  2394. "psr/container-implementation": "1.0",
  2395. "symfony/service-implementation": "1.0"
  2396. },
  2397. "require-dev": {
  2398. "symfony/config": "^5.1",
  2399. "symfony/expression-language": "^4.4|^5.0",
  2400. "symfony/yaml": "^4.4|^5.0"
  2401. },
  2402. "suggest": {
  2403. "symfony/config": "",
  2404. "symfony/expression-language": "For using expressions in service container configuration",
  2405. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  2406. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  2407. "symfony/yaml": ""
  2408. },
  2409. "type": "library",
  2410. "extra": {
  2411. "branch-alias": {
  2412. "dev-master": "5.1-dev"
  2413. }
  2414. },
  2415. "autoload": {
  2416. "psr-4": {
  2417. "Symfony\\Component\\DependencyInjection\\": ""
  2418. },
  2419. "exclude-from-classmap": [
  2420. "/Tests/"
  2421. ]
  2422. },
  2423. "notification-url": "https://packagist.org/downloads/",
  2424. "license": [
  2425. "MIT"
  2426. ],
  2427. "authors": [
  2428. {
  2429. "name": "Fabien Potencier",
  2430. "email": "fabien@symfony.com"
  2431. },
  2432. {
  2433. "name": "Symfony Community",
  2434. "homepage": "https://symfony.com/contributors"
  2435. }
  2436. ],
  2437. "description": "Symfony DependencyInjection Component",
  2438. "homepage": "https://symfony.com",
  2439. "time": "2020-07-23T08:36:24+00:00"
  2440. },
  2441. {
  2442. "name": "symfony/deprecation-contracts",
  2443. "version": "v2.1.3",
  2444. "source": {
  2445. "type": "git",
  2446. "url": "https://github.com/symfony/deprecation-contracts.git",
  2447. "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14"
  2448. },
  2449. "dist": {
  2450. "type": "zip",
  2451. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5e20b83385a77593259c9f8beb2c43cd03b2ac14",
  2452. "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14",
  2453. "shasum": ""
  2454. },
  2455. "require": {
  2456. "php": ">=7.1"
  2457. },
  2458. "type": "library",
  2459. "extra": {
  2460. "branch-alias": {
  2461. "dev-master": "2.1-dev"
  2462. },
  2463. "thanks": {
  2464. "name": "symfony/contracts",
  2465. "url": "https://github.com/symfony/contracts"
  2466. }
  2467. },
  2468. "autoload": {
  2469. "files": [
  2470. "function.php"
  2471. ]
  2472. },
  2473. "notification-url": "https://packagist.org/downloads/",
  2474. "license": [
  2475. "MIT"
  2476. ],
  2477. "authors": [
  2478. {
  2479. "name": "Nicolas Grekas",
  2480. "email": "p@tchwork.com"
  2481. },
  2482. {
  2483. "name": "Symfony Community",
  2484. "homepage": "https://symfony.com/contributors"
  2485. }
  2486. ],
  2487. "description": "A generic function and convention to trigger deprecation notices",
  2488. "homepage": "https://symfony.com",
  2489. "time": "2020-06-06T08:49:21+00:00"
  2490. },
  2491. {
  2492. "name": "symfony/doctrine-bridge",
  2493. "version": "v5.1.3",
  2494. "source": {
  2495. "type": "git",
  2496. "url": "https://github.com/symfony/doctrine-bridge.git",
  2497. "reference": "e88743167c3edc667f809f9b3558954bde1fbd89"
  2498. },
  2499. "dist": {
  2500. "type": "zip",
  2501. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/e88743167c3edc667f809f9b3558954bde1fbd89",
  2502. "reference": "e88743167c3edc667f809f9b3558954bde1fbd89",
  2503. "shasum": ""
  2504. },
  2505. "require": {
  2506. "doctrine/event-manager": "~1.0",
  2507. "doctrine/persistence": "^1.3|^2",
  2508. "php": ">=7.2.5",
  2509. "symfony/polyfill-ctype": "~1.8",
  2510. "symfony/polyfill-mbstring": "~1.0",
  2511. "symfony/polyfill-php80": "^1.15",
  2512. "symfony/service-contracts": "^1.1|^2"
  2513. },
  2514. "conflict": {
  2515. "phpunit/phpunit": "<5.4.3",
  2516. "symfony/dependency-injection": "<4.4",
  2517. "symfony/form": "<5.1",
  2518. "symfony/http-kernel": "<5",
  2519. "symfony/messenger": "<4.4",
  2520. "symfony/property-info": "<5",
  2521. "symfony/security-bundle": "<5",
  2522. "symfony/security-core": "<5",
  2523. "symfony/validator": "<5.0.2"
  2524. },
  2525. "require-dev": {
  2526. "composer/package-versions-deprecated": "^1.8",
  2527. "doctrine/annotations": "~1.7",
  2528. "doctrine/cache": "~1.6",
  2529. "doctrine/collections": "~1.0",
  2530. "doctrine/data-fixtures": "^1.1",
  2531. "doctrine/dbal": "~2.4",
  2532. "doctrine/orm": "^2.6.3",
  2533. "doctrine/reflection": "~1.0",
  2534. "symfony/cache": "^5.1",
  2535. "symfony/config": "^4.4|^5.0",
  2536. "symfony/dependency-injection": "^4.4|^5.0",
  2537. "symfony/doctrine-messenger": "^5.1",
  2538. "symfony/expression-language": "^4.4|^5.0",
  2539. "symfony/form": "^5.1",
  2540. "symfony/http-kernel": "^5.0",
  2541. "symfony/messenger": "^4.4|^5.0",
  2542. "symfony/property-access": "^4.4|^5.0",
  2543. "symfony/property-info": "^5.0",
  2544. "symfony/proxy-manager-bridge": "^4.4|^5.0",
  2545. "symfony/security-core": "^5.0",
  2546. "symfony/stopwatch": "^4.4|^5.0",
  2547. "symfony/translation": "^4.4|^5.0",
  2548. "symfony/validator": "^5.0.2",
  2549. "symfony/var-dumper": "^4.4|^5.0"
  2550. },
  2551. "suggest": {
  2552. "doctrine/data-fixtures": "",
  2553. "doctrine/dbal": "",
  2554. "doctrine/orm": "",
  2555. "symfony/form": "",
  2556. "symfony/property-info": "",
  2557. "symfony/validator": ""
  2558. },
  2559. "type": "symfony-bridge",
  2560. "extra": {
  2561. "branch-alias": {
  2562. "dev-master": "5.1-dev"
  2563. }
  2564. },
  2565. "autoload": {
  2566. "psr-4": {
  2567. "Symfony\\Bridge\\Doctrine\\": ""
  2568. },
  2569. "exclude-from-classmap": [
  2570. "/Tests/"
  2571. ]
  2572. },
  2573. "notification-url": "https://packagist.org/downloads/",
  2574. "license": [
  2575. "MIT"
  2576. ],
  2577. "authors": [
  2578. {
  2579. "name": "Fabien Potencier",
  2580. "email": "fabien@symfony.com"
  2581. },
  2582. {
  2583. "name": "Symfony Community",
  2584. "homepage": "https://symfony.com/contributors"
  2585. }
  2586. ],
  2587. "description": "Symfony Doctrine Bridge",
  2588. "homepage": "https://symfony.com",
  2589. "time": "2020-07-23T16:55:47+00:00"
  2590. },
  2591. {
  2592. "name": "symfony/dotenv",
  2593. "version": "v5.1.3",
  2594. "source": {
  2595. "type": "git",
  2596. "url": "https://github.com/symfony/dotenv.git",
  2597. "reference": "42d2a18597f4c7cafc0e25b1ad6a1cbb4f2caf05"
  2598. },
  2599. "dist": {
  2600. "type": "zip",
  2601. "url": "https://api.github.com/repos/symfony/dotenv/zipball/42d2a18597f4c7cafc0e25b1ad6a1cbb4f2caf05",
  2602. "reference": "42d2a18597f4c7cafc0e25b1ad6a1cbb4f2caf05",
  2603. "shasum": ""
  2604. },
  2605. "require": {
  2606. "php": ">=7.2.5",
  2607. "symfony/deprecation-contracts": "^2.1"
  2608. },
  2609. "require-dev": {
  2610. "symfony/process": "^4.4|^5.0"
  2611. },
  2612. "type": "library",
  2613. "extra": {
  2614. "branch-alias": {
  2615. "dev-master": "5.1-dev"
  2616. }
  2617. },
  2618. "autoload": {
  2619. "psr-4": {
  2620. "Symfony\\Component\\Dotenv\\": ""
  2621. },
  2622. "exclude-from-classmap": [
  2623. "/Tests/"
  2624. ]
  2625. },
  2626. "notification-url": "https://packagist.org/downloads/",
  2627. "license": [
  2628. "MIT"
  2629. ],
  2630. "authors": [
  2631. {
  2632. "name": "Fabien Potencier",
  2633. "email": "fabien@symfony.com"
  2634. },
  2635. {
  2636. "name": "Symfony Community",
  2637. "homepage": "https://symfony.com/contributors"
  2638. }
  2639. ],
  2640. "description": "Registers environment variables from a .env file",
  2641. "homepage": "https://symfony.com",
  2642. "keywords": [
  2643. "dotenv",
  2644. "env",
  2645. "environment"
  2646. ],
  2647. "time": "2020-05-28T08:20:44+00:00"
  2648. },
  2649. {
  2650. "name": "symfony/error-handler",
  2651. "version": "v5.1.3",
  2652. "source": {
  2653. "type": "git",
  2654. "url": "https://github.com/symfony/error-handler.git",
  2655. "reference": "4a0d1673a4731c3cb2dea3580c73a676ecb9ed4b"
  2656. },
  2657. "dist": {
  2658. "type": "zip",
  2659. "url": "https://api.github.com/repos/symfony/error-handler/zipball/4a0d1673a4731c3cb2dea3580c73a676ecb9ed4b",
  2660. "reference": "4a0d1673a4731c3cb2dea3580c73a676ecb9ed4b",
  2661. "shasum": ""
  2662. },
  2663. "require": {
  2664. "php": ">=7.2.5",
  2665. "psr/log": "^1.0",
  2666. "symfony/polyfill-php80": "^1.15",
  2667. "symfony/var-dumper": "^4.4|^5.0"
  2668. },
  2669. "require-dev": {
  2670. "symfony/deprecation-contracts": "^2.1",
  2671. "symfony/http-kernel": "^4.4|^5.0",
  2672. "symfony/serializer": "^4.4|^5.0"
  2673. },
  2674. "type": "library",
  2675. "extra": {
  2676. "branch-alias": {
  2677. "dev-master": "5.1-dev"
  2678. }
  2679. },
  2680. "autoload": {
  2681. "psr-4": {
  2682. "Symfony\\Component\\ErrorHandler\\": ""
  2683. },
  2684. "exclude-from-classmap": [
  2685. "/Tests/"
  2686. ]
  2687. },
  2688. "notification-url": "https://packagist.org/downloads/",
  2689. "license": [
  2690. "MIT"
  2691. ],
  2692. "authors": [
  2693. {
  2694. "name": "Fabien Potencier",
  2695. "email": "fabien@symfony.com"
  2696. },
  2697. {
  2698. "name": "Symfony Community",
  2699. "homepage": "https://symfony.com/contributors"
  2700. }
  2701. ],
  2702. "description": "Symfony ErrorHandler Component",
  2703. "homepage": "https://symfony.com",
  2704. "time": "2020-07-23T08:36:24+00:00"
  2705. },
  2706. {
  2707. "name": "symfony/event-dispatcher",
  2708. "version": "v5.1.3",
  2709. "source": {
  2710. "type": "git",
  2711. "url": "https://github.com/symfony/event-dispatcher.git",
  2712. "reference": "7827d55911f91c070fc293ea51a06eec80797d76"
  2713. },
  2714. "dist": {
  2715. "type": "zip",
  2716. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/7827d55911f91c070fc293ea51a06eec80797d76",
  2717. "reference": "7827d55911f91c070fc293ea51a06eec80797d76",
  2718. "shasum": ""
  2719. },
  2720. "require": {
  2721. "php": ">=7.2.5",
  2722. "symfony/deprecation-contracts": "^2.1",
  2723. "symfony/event-dispatcher-contracts": "^2",
  2724. "symfony/polyfill-php80": "^1.15"
  2725. },
  2726. "conflict": {
  2727. "symfony/dependency-injection": "<4.4"
  2728. },
  2729. "provide": {
  2730. "psr/event-dispatcher-implementation": "1.0",
  2731. "symfony/event-dispatcher-implementation": "2.0"
  2732. },
  2733. "require-dev": {
  2734. "psr/log": "~1.0",
  2735. "symfony/config": "^4.4|^5.0",
  2736. "symfony/dependency-injection": "^4.4|^5.0",
  2737. "symfony/expression-language": "^4.4|^5.0",
  2738. "symfony/http-foundation": "^4.4|^5.0",
  2739. "symfony/service-contracts": "^1.1|^2",
  2740. "symfony/stopwatch": "^4.4|^5.0"
  2741. },
  2742. "suggest": {
  2743. "symfony/dependency-injection": "",
  2744. "symfony/http-kernel": ""
  2745. },
  2746. "type": "library",
  2747. "extra": {
  2748. "branch-alias": {
  2749. "dev-master": "5.1-dev"
  2750. }
  2751. },
  2752. "autoload": {
  2753. "psr-4": {
  2754. "Symfony\\Component\\EventDispatcher\\": ""
  2755. },
  2756. "exclude-from-classmap": [
  2757. "/Tests/"
  2758. ]
  2759. },
  2760. "notification-url": "https://packagist.org/downloads/",
  2761. "license": [
  2762. "MIT"
  2763. ],
  2764. "authors": [
  2765. {
  2766. "name": "Fabien Potencier",
  2767. "email": "fabien@symfony.com"
  2768. },
  2769. {
  2770. "name": "Symfony Community",
  2771. "homepage": "https://symfony.com/contributors"
  2772. }
  2773. ],
  2774. "description": "Symfony EventDispatcher Component",
  2775. "homepage": "https://symfony.com",
  2776. "time": "2020-06-18T18:24:02+00:00"
  2777. },
  2778. {
  2779. "name": "symfony/event-dispatcher-contracts",
  2780. "version": "v2.1.3",
  2781. "source": {
  2782. "type": "git",
  2783. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2784. "reference": "f6f613d74cfc5a623fc36294d3451eb7fa5a042b"
  2785. },
  2786. "dist": {
  2787. "type": "zip",
  2788. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f6f613d74cfc5a623fc36294d3451eb7fa5a042b",
  2789. "reference": "f6f613d74cfc5a623fc36294d3451eb7fa5a042b",
  2790. "shasum": ""
  2791. },
  2792. "require": {
  2793. "php": ">=7.2.5",
  2794. "psr/event-dispatcher": "^1"
  2795. },
  2796. "suggest": {
  2797. "symfony/event-dispatcher-implementation": ""
  2798. },
  2799. "type": "library",
  2800. "extra": {
  2801. "branch-alias": {
  2802. "dev-master": "2.1-dev"
  2803. },
  2804. "thanks": {
  2805. "name": "symfony/contracts",
  2806. "url": "https://github.com/symfony/contracts"
  2807. }
  2808. },
  2809. "autoload": {
  2810. "psr-4": {
  2811. "Symfony\\Contracts\\EventDispatcher\\": ""
  2812. }
  2813. },
  2814. "notification-url": "https://packagist.org/downloads/",
  2815. "license": [
  2816. "MIT"
  2817. ],
  2818. "authors": [
  2819. {
  2820. "name": "Nicolas Grekas",
  2821. "email": "p@tchwork.com"
  2822. },
  2823. {
  2824. "name": "Symfony Community",
  2825. "homepage": "https://symfony.com/contributors"
  2826. }
  2827. ],
  2828. "description": "Generic abstractions related to dispatching event",
  2829. "homepage": "https://symfony.com",
  2830. "keywords": [
  2831. "abstractions",
  2832. "contracts",
  2833. "decoupling",
  2834. "interfaces",
  2835. "interoperability",
  2836. "standards"
  2837. ],
  2838. "time": "2020-07-06T13:23:11+00:00"
  2839. },
  2840. {
  2841. "name": "symfony/expression-language",
  2842. "version": "v5.1.3",
  2843. "source": {
  2844. "type": "git",
  2845. "url": "https://github.com/symfony/expression-language.git",
  2846. "reference": "6675d937852379a251017db6e5144dd57506fbbd"
  2847. },
  2848. "dist": {
  2849. "type": "zip",
  2850. "url": "https://api.github.com/repos/symfony/expression-language/zipball/6675d937852379a251017db6e5144dd57506fbbd",
  2851. "reference": "6675d937852379a251017db6e5144dd57506fbbd",
  2852. "shasum": ""
  2853. },
  2854. "require": {
  2855. "php": ">=7.2.5",
  2856. "symfony/cache": "^4.4|^5.0",
  2857. "symfony/polyfill-php80": "^1.15",
  2858. "symfony/service-contracts": "^1.1|^2"
  2859. },
  2860. "type": "library",
  2861. "extra": {
  2862. "branch-alias": {
  2863. "dev-master": "5.1-dev"
  2864. }
  2865. },
  2866. "autoload": {
  2867. "psr-4": {
  2868. "Symfony\\Component\\ExpressionLanguage\\": ""
  2869. },
  2870. "exclude-from-classmap": [
  2871. "/Tests/"
  2872. ]
  2873. },
  2874. "notification-url": "https://packagist.org/downloads/",
  2875. "license": [
  2876. "MIT"
  2877. ],
  2878. "authors": [
  2879. {
  2880. "name": "Fabien Potencier",
  2881. "email": "fabien@symfony.com"
  2882. },
  2883. {
  2884. "name": "Symfony Community",
  2885. "homepage": "https://symfony.com/contributors"
  2886. }
  2887. ],
  2888. "description": "Symfony ExpressionLanguage Component",
  2889. "homepage": "https://symfony.com",
  2890. "time": "2020-05-31T07:33:39+00:00"
  2891. },
  2892. {
  2893. "name": "symfony/filesystem",
  2894. "version": "v5.1.3",
  2895. "source": {
  2896. "type": "git",
  2897. "url": "https://github.com/symfony/filesystem.git",
  2898. "reference": "6e4320f06d5f2cce0d96530162491f4465179157"
  2899. },
  2900. "dist": {
  2901. "type": "zip",
  2902. "url": "https://api.github.com/repos/symfony/filesystem/zipball/6e4320f06d5f2cce0d96530162491f4465179157",
  2903. "reference": "6e4320f06d5f2cce0d96530162491f4465179157",
  2904. "shasum": ""
  2905. },
  2906. "require": {
  2907. "php": ">=7.2.5",
  2908. "symfony/polyfill-ctype": "~1.8"
  2909. },
  2910. "type": "library",
  2911. "extra": {
  2912. "branch-alias": {
  2913. "dev-master": "5.1-dev"
  2914. }
  2915. },
  2916. "autoload": {
  2917. "psr-4": {
  2918. "Symfony\\Component\\Filesystem\\": ""
  2919. },
  2920. "exclude-from-classmap": [
  2921. "/Tests/"
  2922. ]
  2923. },
  2924. "notification-url": "https://packagist.org/downloads/",
  2925. "license": [
  2926. "MIT"
  2927. ],
  2928. "authors": [
  2929. {
  2930. "name": "Fabien Potencier",
  2931. "email": "fabien@symfony.com"
  2932. },
  2933. {
  2934. "name": "Symfony Community",
  2935. "homepage": "https://symfony.com/contributors"
  2936. }
  2937. ],
  2938. "description": "Symfony Filesystem Component",
  2939. "homepage": "https://symfony.com",
  2940. "time": "2020-05-30T20:35:19+00:00"
  2941. },
  2942. {
  2943. "name": "symfony/finder",
  2944. "version": "v5.1.3",
  2945. "source": {
  2946. "type": "git",
  2947. "url": "https://github.com/symfony/finder.git",
  2948. "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187"
  2949. },
  2950. "dist": {
  2951. "type": "zip",
  2952. "url": "https://api.github.com/repos/symfony/finder/zipball/4298870062bfc667cb78d2b379be4bf5dec5f187",
  2953. "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187",
  2954. "shasum": ""
  2955. },
  2956. "require": {
  2957. "php": ">=7.2.5"
  2958. },
  2959. "type": "library",
  2960. "extra": {
  2961. "branch-alias": {
  2962. "dev-master": "5.1-dev"
  2963. }
  2964. },
  2965. "autoload": {
  2966. "psr-4": {
  2967. "Symfony\\Component\\Finder\\": ""
  2968. },
  2969. "exclude-from-classmap": [
  2970. "/Tests/"
  2971. ]
  2972. },
  2973. "notification-url": "https://packagist.org/downloads/",
  2974. "license": [
  2975. "MIT"
  2976. ],
  2977. "authors": [
  2978. {
  2979. "name": "Fabien Potencier",
  2980. "email": "fabien@symfony.com"
  2981. },
  2982. {
  2983. "name": "Symfony Community",
  2984. "homepage": "https://symfony.com/contributors"
  2985. }
  2986. ],
  2987. "description": "Symfony Finder Component",
  2988. "homepage": "https://symfony.com",
  2989. "time": "2020-05-20T17:43:50+00:00"
  2990. },
  2991. {
  2992. "name": "symfony/flex",
  2993. "version": "v1.9.1",
  2994. "source": {
  2995. "type": "git",
  2996. "url": "https://github.com/symfony/flex.git",
  2997. "reference": "0e752e47d8382361ca2d7ef016f549828185ddb6"
  2998. },
  2999. "dist": {
  3000. "type": "zip",
  3001. "url": "https://api.github.com/repos/symfony/flex/zipball/0e752e47d8382361ca2d7ef016f549828185ddb6",
  3002. "reference": "0e752e47d8382361ca2d7ef016f549828185ddb6",
  3003. "shasum": ""
  3004. },
  3005. "require": {
  3006. "composer-plugin-api": "^1.0|^2.0",
  3007. "php": ">=7.1"
  3008. },
  3009. "require-dev": {
  3010. "composer/composer": "^1.0.2|^2.0",
  3011. "symfony/dotenv": "^4.4|^5.0",
  3012. "symfony/phpunit-bridge": "^4.4|^5.0",
  3013. "symfony/process": "^3.4|^4.4|^5.0"
  3014. },
  3015. "type": "composer-plugin",
  3016. "extra": {
  3017. "branch-alias": {
  3018. "dev-master": "1.8-dev"
  3019. },
  3020. "class": "Symfony\\Flex\\Flex"
  3021. },
  3022. "autoload": {
  3023. "psr-4": {
  3024. "Symfony\\Flex\\": "src"
  3025. }
  3026. },
  3027. "notification-url": "https://packagist.org/downloads/",
  3028. "license": [
  3029. "MIT"
  3030. ],
  3031. "authors": [
  3032. {
  3033. "name": "Fabien Potencier",
  3034. "email": "fabien.potencier@gmail.com"
  3035. }
  3036. ],
  3037. "description": "Composer plugin for Symfony",
  3038. "time": "2020-07-14T15:18:33+00:00"
  3039. },
  3040. {
  3041. "name": "symfony/form",
  3042. "version": "v5.1.3",
  3043. "source": {
  3044. "type": "git",
  3045. "url": "https://github.com/symfony/form.git",
  3046. "reference": "bd264b81ab801abea3c44f43aeb6eacf68beaca7"
  3047. },
  3048. "dist": {
  3049. "type": "zip",
  3050. "url": "https://api.github.com/repos/symfony/form/zipball/bd264b81ab801abea3c44f43aeb6eacf68beaca7",
  3051. "reference": "bd264b81ab801abea3c44f43aeb6eacf68beaca7",
  3052. "shasum": ""
  3053. },
  3054. "require": {
  3055. "php": ">=7.2.5",
  3056. "symfony/deprecation-contracts": "^2.1",
  3057. "symfony/event-dispatcher": "^4.4|^5.0",
  3058. "symfony/intl": "^4.4|^5.0",
  3059. "symfony/options-resolver": "^5.1",
  3060. "symfony/polyfill-ctype": "~1.8",
  3061. "symfony/polyfill-mbstring": "~1.0",
  3062. "symfony/polyfill-php80": "^1.15",
  3063. "symfony/property-access": "^5.0.8",
  3064. "symfony/service-contracts": "^1.1|^2"
  3065. },
  3066. "conflict": {
  3067. "phpunit/phpunit": "<5.4.3",
  3068. "symfony/console": "<4.4",
  3069. "symfony/dependency-injection": "<4.4",
  3070. "symfony/doctrine-bridge": "<4.4",
  3071. "symfony/error-handler": "<4.4.5",
  3072. "symfony/framework-bundle": "<4.4",
  3073. "symfony/http-kernel": "<4.4",
  3074. "symfony/intl": "<4.4",
  3075. "symfony/translation": "<4.4",
  3076. "symfony/translation-contracts": "<1.1.7",
  3077. "symfony/twig-bridge": "<4.4"
  3078. },
  3079. "require-dev": {
  3080. "doctrine/collections": "~1.0",
  3081. "symfony/config": "^4.4|^5.0",
  3082. "symfony/console": "^4.4|^5.0",
  3083. "symfony/dependency-injection": "^4.4|^5.0",
  3084. "symfony/expression-language": "^4.4|^5.0",
  3085. "symfony/http-foundation": "^4.4|^5.0",
  3086. "symfony/http-kernel": "^4.4|^5.0",
  3087. "symfony/security-csrf": "^4.4|^5.0",
  3088. "symfony/translation": "^4.4|^5.0",
  3089. "symfony/validator": "^4.4|^5.0",
  3090. "symfony/var-dumper": "^4.4|^5.0"
  3091. },
  3092. "suggest": {
  3093. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  3094. "symfony/twig-bridge": "For templating with Twig.",
  3095. "symfony/validator": "For form validation."
  3096. },
  3097. "type": "library",
  3098. "extra": {
  3099. "branch-alias": {
  3100. "dev-master": "5.1-dev"
  3101. }
  3102. },
  3103. "autoload": {
  3104. "psr-4": {
  3105. "Symfony\\Component\\Form\\": ""
  3106. },
  3107. "exclude-from-classmap": [
  3108. "/Tests/"
  3109. ]
  3110. },
  3111. "notification-url": "https://packagist.org/downloads/",
  3112. "license": [
  3113. "MIT"
  3114. ],
  3115. "authors": [
  3116. {
  3117. "name": "Fabien Potencier",
  3118. "email": "fabien@symfony.com"
  3119. },
  3120. {
  3121. "name": "Symfony Community",
  3122. "homepage": "https://symfony.com/contributors"
  3123. }
  3124. ],
  3125. "description": "Symfony Form Component",
  3126. "homepage": "https://symfony.com",
  3127. "time": "2020-07-12T12:58:00+00:00"
  3128. },
  3129. {
  3130. "name": "symfony/framework-bundle",
  3131. "version": "v5.1.3",
  3132. "source": {
  3133. "type": "git",
  3134. "url": "https://github.com/symfony/framework-bundle.git",
  3135. "reference": "f9be9af9092f165b9b809d870289b57330301dc6"
  3136. },
  3137. "dist": {
  3138. "type": "zip",
  3139. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/f9be9af9092f165b9b809d870289b57330301dc6",
  3140. "reference": "f9be9af9092f165b9b809d870289b57330301dc6",
  3141. "shasum": ""
  3142. },
  3143. "require": {
  3144. "ext-xml": "*",
  3145. "php": ">=7.2.5",
  3146. "symfony/cache": "^4.4|^5.0",
  3147. "symfony/config": "^5.0",
  3148. "symfony/dependency-injection": "^5.1",
  3149. "symfony/error-handler": "^4.4.1|^5.0.1",
  3150. "symfony/event-dispatcher": "^5.1",
  3151. "symfony/filesystem": "^4.4|^5.0",
  3152. "symfony/finder": "^4.4|^5.0",
  3153. "symfony/http-foundation": "^4.4|^5.0",
  3154. "symfony/http-kernel": "^5.0",
  3155. "symfony/polyfill-mbstring": "~1.0",
  3156. "symfony/polyfill-php80": "^1.15",
  3157. "symfony/routing": "^5.1"
  3158. },
  3159. "conflict": {
  3160. "doctrine/persistence": "<1.3",
  3161. "phpdocumentor/reflection-docblock": "<3.0",
  3162. "phpdocumentor/type-resolver": "<0.2.1",
  3163. "phpunit/phpunit": "<5.4.3",
  3164. "symfony/asset": "<5.1",
  3165. "symfony/browser-kit": "<4.4",
  3166. "symfony/console": "<4.4",
  3167. "symfony/dom-crawler": "<4.4",
  3168. "symfony/dotenv": "<5.1",
  3169. "symfony/form": "<4.4",
  3170. "symfony/http-client": "<4.4",
  3171. "symfony/lock": "<4.4",
  3172. "symfony/mailer": "<4.4",
  3173. "symfony/messenger": "<4.4",
  3174. "symfony/mime": "<4.4",
  3175. "symfony/property-info": "<4.4",
  3176. "symfony/serializer": "<4.4",
  3177. "symfony/stopwatch": "<4.4",
  3178. "symfony/translation": "<5.0",
  3179. "symfony/twig-bridge": "<4.4",
  3180. "symfony/twig-bundle": "<4.4",
  3181. "symfony/validator": "<4.4",
  3182. "symfony/web-profiler-bundle": "<4.4",
  3183. "symfony/workflow": "<4.4"
  3184. },
  3185. "require-dev": {
  3186. "doctrine/annotations": "~1.7",
  3187. "doctrine/cache": "~1.0",
  3188. "paragonie/sodium_compat": "^1.8",
  3189. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  3190. "symfony/asset": "^5.1",
  3191. "symfony/browser-kit": "^4.4|^5.0",
  3192. "symfony/console": "^4.4|^5.0",
  3193. "symfony/css-selector": "^4.4|^5.0",
  3194. "symfony/dom-crawler": "^4.4|^5.0",
  3195. "symfony/dotenv": "^5.1",
  3196. "symfony/expression-language": "^4.4|^5.0",
  3197. "symfony/form": "^4.4|^5.0",
  3198. "symfony/http-client": "^4.4|^5.0",
  3199. "symfony/lock": "^4.4|^5.0",
  3200. "symfony/mailer": "^4.4|^5.0",
  3201. "symfony/messenger": "^4.4|^5.0",
  3202. "symfony/mime": "^4.4|^5.0",
  3203. "symfony/polyfill-intl-icu": "~1.0",
  3204. "symfony/process": "^4.4|^5.0",
  3205. "symfony/property-info": "^4.4|^5.0",
  3206. "symfony/security-bundle": "^5.1",
  3207. "symfony/security-csrf": "^4.4|^5.0",
  3208. "symfony/security-http": "^4.4|^5.0",
  3209. "symfony/serializer": "^4.4|^5.0",
  3210. "symfony/stopwatch": "^4.4|^5.0",
  3211. "symfony/string": "^5.0",
  3212. "symfony/translation": "^5.0",
  3213. "symfony/twig-bundle": "^4.4|^5.0",
  3214. "symfony/validator": "^4.4|^5.0",
  3215. "symfony/web-link": "^4.4|^5.0",
  3216. "symfony/workflow": "^4.4|^5.0",
  3217. "symfony/yaml": "^4.4|^5.0",
  3218. "twig/twig": "^2.10|^3.0"
  3219. },
  3220. "suggest": {
  3221. "ext-apcu": "For best performance of the system caches",
  3222. "symfony/console": "For using the console commands",
  3223. "symfony/form": "For using forms",
  3224. "symfony/property-info": "For using the property_info service",
  3225. "symfony/serializer": "For using the serializer service",
  3226. "symfony/validator": "For using validation",
  3227. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  3228. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  3229. },
  3230. "type": "symfony-bundle",
  3231. "extra": {
  3232. "branch-alias": {
  3233. "dev-master": "5.1-dev"
  3234. }
  3235. },
  3236. "autoload": {
  3237. "psr-4": {
  3238. "Symfony\\Bundle\\FrameworkBundle\\": ""
  3239. },
  3240. "exclude-from-classmap": [
  3241. "/Tests/"
  3242. ]
  3243. },
  3244. "notification-url": "https://packagist.org/downloads/",
  3245. "license": [
  3246. "MIT"
  3247. ],
  3248. "authors": [
  3249. {
  3250. "name": "Fabien Potencier",
  3251. "email": "fabien@symfony.com"
  3252. },
  3253. {
  3254. "name": "Symfony Community",
  3255. "homepage": "https://symfony.com/contributors"
  3256. }
  3257. ],
  3258. "description": "Symfony FrameworkBundle",
  3259. "homepage": "https://symfony.com",
  3260. "time": "2020-07-23T08:36:24+00:00"
  3261. },
  3262. {
  3263. "name": "symfony/http-foundation",
  3264. "version": "v5.1.3",
  3265. "source": {
  3266. "type": "git",
  3267. "url": "https://github.com/symfony/http-foundation.git",
  3268. "reference": "1f0d6627e680591c61e9176f04a0dc887b4e6702"
  3269. },
  3270. "dist": {
  3271. "type": "zip",
  3272. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/1f0d6627e680591c61e9176f04a0dc887b4e6702",
  3273. "reference": "1f0d6627e680591c61e9176f04a0dc887b4e6702",
  3274. "shasum": ""
  3275. },
  3276. "require": {
  3277. "php": ">=7.2.5",
  3278. "symfony/deprecation-contracts": "^2.1",
  3279. "symfony/polyfill-mbstring": "~1.1",
  3280. "symfony/polyfill-php80": "^1.15"
  3281. },
  3282. "require-dev": {
  3283. "predis/predis": "~1.0",
  3284. "symfony/cache": "^4.4|^5.0",
  3285. "symfony/expression-language": "^4.4|^5.0",
  3286. "symfony/mime": "^4.4|^5.0"
  3287. },
  3288. "suggest": {
  3289. "symfony/mime": "To use the file extension guesser"
  3290. },
  3291. "type": "library",
  3292. "extra": {
  3293. "branch-alias": {
  3294. "dev-master": "5.1-dev"
  3295. }
  3296. },
  3297. "autoload": {
  3298. "psr-4": {
  3299. "Symfony\\Component\\HttpFoundation\\": ""
  3300. },
  3301. "exclude-from-classmap": [
  3302. "/Tests/"
  3303. ]
  3304. },
  3305. "notification-url": "https://packagist.org/downloads/",
  3306. "license": [
  3307. "MIT"
  3308. ],
  3309. "authors": [
  3310. {
  3311. "name": "Fabien Potencier",
  3312. "email": "fabien@symfony.com"
  3313. },
  3314. {
  3315. "name": "Symfony Community",
  3316. "homepage": "https://symfony.com/contributors"
  3317. }
  3318. ],
  3319. "description": "Symfony HttpFoundation Component",
  3320. "homepage": "https://symfony.com",
  3321. "time": "2020-07-23T10:04:31+00:00"
  3322. },
  3323. {
  3324. "name": "symfony/http-kernel",
  3325. "version": "v5.1.3",
  3326. "source": {
  3327. "type": "git",
  3328. "url": "https://github.com/symfony/http-kernel.git",
  3329. "reference": "d6dd8f6420e377970ddad0d6317d4ce4186fc6b3"
  3330. },
  3331. "dist": {
  3332. "type": "zip",
  3333. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/d6dd8f6420e377970ddad0d6317d4ce4186fc6b3",
  3334. "reference": "d6dd8f6420e377970ddad0d6317d4ce4186fc6b3",
  3335. "shasum": ""
  3336. },
  3337. "require": {
  3338. "php": ">=7.2.5",
  3339. "psr/log": "~1.0",
  3340. "symfony/deprecation-contracts": "^2.1",
  3341. "symfony/error-handler": "^4.4|^5.0",
  3342. "symfony/event-dispatcher": "^5.0",
  3343. "symfony/http-foundation": "^4.4|^5.0",
  3344. "symfony/polyfill-ctype": "^1.8",
  3345. "symfony/polyfill-php73": "^1.9",
  3346. "symfony/polyfill-php80": "^1.15"
  3347. },
  3348. "conflict": {
  3349. "symfony/browser-kit": "<4.4",
  3350. "symfony/cache": "<5.0",
  3351. "symfony/config": "<5.0",
  3352. "symfony/console": "<4.4",
  3353. "symfony/dependency-injection": "<4.4",
  3354. "symfony/doctrine-bridge": "<5.0",
  3355. "symfony/form": "<5.0",
  3356. "symfony/http-client": "<5.0",
  3357. "symfony/mailer": "<5.0",
  3358. "symfony/messenger": "<5.0",
  3359. "symfony/translation": "<5.0",
  3360. "symfony/twig-bridge": "<5.0",
  3361. "symfony/validator": "<5.0",
  3362. "twig/twig": "<2.4"
  3363. },
  3364. "provide": {
  3365. "psr/log-implementation": "1.0"
  3366. },
  3367. "require-dev": {
  3368. "psr/cache": "~1.0",
  3369. "symfony/browser-kit": "^4.4|^5.0",
  3370. "symfony/config": "^5.0",
  3371. "symfony/console": "^4.4|^5.0",
  3372. "symfony/css-selector": "^4.4|^5.0",
  3373. "symfony/dependency-injection": "^4.4|^5.0",
  3374. "symfony/dom-crawler": "^4.4|^5.0",
  3375. "symfony/expression-language": "^4.4|^5.0",
  3376. "symfony/finder": "^4.4|^5.0",
  3377. "symfony/process": "^4.4|^5.0",
  3378. "symfony/routing": "^4.4|^5.0",
  3379. "symfony/stopwatch": "^4.4|^5.0",
  3380. "symfony/translation": "^4.4|^5.0",
  3381. "symfony/translation-contracts": "^1.1|^2",
  3382. "twig/twig": "^2.4|^3.0"
  3383. },
  3384. "suggest": {
  3385. "symfony/browser-kit": "",
  3386. "symfony/config": "",
  3387. "symfony/console": "",
  3388. "symfony/dependency-injection": ""
  3389. },
  3390. "type": "library",
  3391. "extra": {
  3392. "branch-alias": {
  3393. "dev-master": "5.1-dev"
  3394. }
  3395. },
  3396. "autoload": {
  3397. "psr-4": {
  3398. "Symfony\\Component\\HttpKernel\\": ""
  3399. },
  3400. "exclude-from-classmap": [
  3401. "/Tests/"
  3402. ]
  3403. },
  3404. "notification-url": "https://packagist.org/downloads/",
  3405. "license": [
  3406. "MIT"
  3407. ],
  3408. "authors": [
  3409. {
  3410. "name": "Fabien Potencier",
  3411. "email": "fabien@symfony.com"
  3412. },
  3413. {
  3414. "name": "Symfony Community",
  3415. "homepage": "https://symfony.com/contributors"
  3416. }
  3417. ],
  3418. "description": "Symfony HttpKernel Component",
  3419. "homepage": "https://symfony.com",
  3420. "time": "2020-07-24T04:22:56+00:00"
  3421. },
  3422. {
  3423. "name": "symfony/intl",
  3424. "version": "v5.1.3",
  3425. "source": {
  3426. "type": "git",
  3427. "url": "https://github.com/symfony/intl.git",
  3428. "reference": "7299f8c95ffd2623986c976fb8c48beb4c4cb44d"
  3429. },
  3430. "dist": {
  3431. "type": "zip",
  3432. "url": "https://api.github.com/repos/symfony/intl/zipball/7299f8c95ffd2623986c976fb8c48beb4c4cb44d",
  3433. "reference": "7299f8c95ffd2623986c976fb8c48beb4c4cb44d",
  3434. "shasum": ""
  3435. },
  3436. "require": {
  3437. "php": ">=7.2.5",
  3438. "symfony/polyfill-intl-icu": "~1.0",
  3439. "symfony/polyfill-php80": "^1.15"
  3440. },
  3441. "require-dev": {
  3442. "symfony/filesystem": "^4.4|^5.0"
  3443. },
  3444. "suggest": {
  3445. "ext-intl": "to use the component with locales other than \"en\""
  3446. },
  3447. "type": "library",
  3448. "extra": {
  3449. "branch-alias": {
  3450. "dev-master": "5.1-dev"
  3451. }
  3452. },
  3453. "autoload": {
  3454. "psr-4": {
  3455. "Symfony\\Component\\Intl\\": ""
  3456. },
  3457. "classmap": [
  3458. "Resources/stubs"
  3459. ],
  3460. "exclude-from-classmap": [
  3461. "/Tests/"
  3462. ]
  3463. },
  3464. "notification-url": "https://packagist.org/downloads/",
  3465. "license": [
  3466. "MIT"
  3467. ],
  3468. "authors": [
  3469. {
  3470. "name": "Bernhard Schussek",
  3471. "email": "bschussek@gmail.com"
  3472. },
  3473. {
  3474. "name": "Eriksen Costa",
  3475. "email": "eriksen.costa@infranology.com.br"
  3476. },
  3477. {
  3478. "name": "Igor Wiedler",
  3479. "email": "igor@wiedler.ch"
  3480. },
  3481. {
  3482. "name": "Symfony Community",
  3483. "homepage": "https://symfony.com/contributors"
  3484. }
  3485. ],
  3486. "description": "A PHP replacement layer for the C intl extension that includes additional data from the ICU library.",
  3487. "homepage": "https://symfony.com",
  3488. "keywords": [
  3489. "i18n",
  3490. "icu",
  3491. "internationalization",
  3492. "intl",
  3493. "l10n",
  3494. "localization"
  3495. ],
  3496. "time": "2020-06-18T18:24:02+00:00"
  3497. },
  3498. {
  3499. "name": "symfony/monolog-bridge",
  3500. "version": "v5.1.3",
  3501. "source": {
  3502. "type": "git",
  3503. "url": "https://github.com/symfony/monolog-bridge.git",
  3504. "reference": "81e8c7692b78161a06f779c741ef21d80f217175"
  3505. },
  3506. "dist": {
  3507. "type": "zip",
  3508. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/81e8c7692b78161a06f779c741ef21d80f217175",
  3509. "reference": "81e8c7692b78161a06f779c741ef21d80f217175",
  3510. "shasum": ""
  3511. },
  3512. "require": {
  3513. "monolog/monolog": "^1.25.1|^2",
  3514. "php": ">=7.2.5",
  3515. "symfony/http-kernel": "^4.4|^5.0",
  3516. "symfony/service-contracts": "^1.1|^2"
  3517. },
  3518. "conflict": {
  3519. "symfony/console": "<4.4",
  3520. "symfony/http-foundation": "<4.4"
  3521. },
  3522. "require-dev": {
  3523. "symfony/console": "^4.4|^5.0",
  3524. "symfony/http-client": "^4.4|^5.0",
  3525. "symfony/mailer": "^4.4|^5.0",
  3526. "symfony/mime": "^4.4|^5.0",
  3527. "symfony/security-core": "^4.4|^5.0",
  3528. "symfony/var-dumper": "^4.4|^5.0"
  3529. },
  3530. "suggest": {
  3531. "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings.",
  3532. "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
  3533. "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
  3534. },
  3535. "type": "symfony-bridge",
  3536. "extra": {
  3537. "branch-alias": {
  3538. "dev-master": "5.1-dev"
  3539. }
  3540. },
  3541. "autoload": {
  3542. "psr-4": {
  3543. "Symfony\\Bridge\\Monolog\\": ""
  3544. },
  3545. "exclude-from-classmap": [
  3546. "/Tests/"
  3547. ]
  3548. },
  3549. "notification-url": "https://packagist.org/downloads/",
  3550. "license": [
  3551. "MIT"
  3552. ],
  3553. "authors": [
  3554. {
  3555. "name": "Fabien Potencier",
  3556. "email": "fabien@symfony.com"
  3557. },
  3558. {
  3559. "name": "Symfony Community",
  3560. "homepage": "https://symfony.com/contributors"
  3561. }
  3562. ],
  3563. "description": "Symfony Monolog Bridge",
  3564. "homepage": "https://symfony.com",
  3565. "time": "2020-06-18T18:24:02+00:00"
  3566. },
  3567. {
  3568. "name": "symfony/monolog-bundle",
  3569. "version": "v3.5.0",
  3570. "source": {
  3571. "type": "git",
  3572. "url": "https://github.com/symfony/monolog-bundle.git",
  3573. "reference": "dd80460fcfe1fa2050a7103ad818e9d0686ce6fd"
  3574. },
  3575. "dist": {
  3576. "type": "zip",
  3577. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/dd80460fcfe1fa2050a7103ad818e9d0686ce6fd",
  3578. "reference": "dd80460fcfe1fa2050a7103ad818e9d0686ce6fd",
  3579. "shasum": ""
  3580. },
  3581. "require": {
  3582. "monolog/monolog": "~1.22 || ~2.0",
  3583. "php": ">=5.6",
  3584. "symfony/config": "~3.4 || ~4.0 || ^5.0",
  3585. "symfony/dependency-injection": "~3.4.10 || ^4.0.10 || ^5.0",
  3586. "symfony/http-kernel": "~3.4 || ~4.0 || ^5.0",
  3587. "symfony/monolog-bridge": "~3.4 || ~4.0 || ^5.0"
  3588. },
  3589. "require-dev": {
  3590. "symfony/console": "~3.4 || ~4.0 || ^5.0",
  3591. "symfony/phpunit-bridge": "^3.4.19 || ^4.0 || ^5.0",
  3592. "symfony/yaml": "~3.4 || ~4.0 || ^5.0"
  3593. },
  3594. "type": "symfony-bundle",
  3595. "extra": {
  3596. "branch-alias": {
  3597. "dev-master": "3.x-dev"
  3598. }
  3599. },
  3600. "autoload": {
  3601. "psr-4": {
  3602. "Symfony\\Bundle\\MonologBundle\\": ""
  3603. },
  3604. "exclude-from-classmap": [
  3605. "/Tests/"
  3606. ]
  3607. },
  3608. "notification-url": "https://packagist.org/downloads/",
  3609. "license": [
  3610. "MIT"
  3611. ],
  3612. "authors": [
  3613. {
  3614. "name": "Fabien Potencier",
  3615. "email": "fabien@symfony.com"
  3616. },
  3617. {
  3618. "name": "Symfony Community",
  3619. "homepage": "http://symfony.com/contributors"
  3620. }
  3621. ],
  3622. "description": "Symfony MonologBundle",
  3623. "homepage": "http://symfony.com",
  3624. "keywords": [
  3625. "log",
  3626. "logging"
  3627. ],
  3628. "time": "2019-11-13T13:11:14+00:00"
  3629. },
  3630. {
  3631. "name": "symfony/options-resolver",
  3632. "version": "v5.1.3",
  3633. "source": {
  3634. "type": "git",
  3635. "url": "https://github.com/symfony/options-resolver.git",
  3636. "reference": "9ff59517938f88d90b6e65311fef08faa640f681"
  3637. },
  3638. "dist": {
  3639. "type": "zip",
  3640. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/9ff59517938f88d90b6e65311fef08faa640f681",
  3641. "reference": "9ff59517938f88d90b6e65311fef08faa640f681",
  3642. "shasum": ""
  3643. },
  3644. "require": {
  3645. "php": ">=7.2.5",
  3646. "symfony/deprecation-contracts": "^2.1",
  3647. "symfony/polyfill-php80": "^1.15"
  3648. },
  3649. "type": "library",
  3650. "extra": {
  3651. "branch-alias": {
  3652. "dev-master": "5.1-dev"
  3653. }
  3654. },
  3655. "autoload": {
  3656. "psr-4": {
  3657. "Symfony\\Component\\OptionsResolver\\": ""
  3658. },
  3659. "exclude-from-classmap": [
  3660. "/Tests/"
  3661. ]
  3662. },
  3663. "notification-url": "https://packagist.org/downloads/",
  3664. "license": [
  3665. "MIT"
  3666. ],
  3667. "authors": [
  3668. {
  3669. "name": "Fabien Potencier",
  3670. "email": "fabien@symfony.com"
  3671. },
  3672. {
  3673. "name": "Symfony Community",
  3674. "homepage": "https://symfony.com/contributors"
  3675. }
  3676. ],
  3677. "description": "Symfony OptionsResolver Component",
  3678. "homepage": "https://symfony.com",
  3679. "keywords": [
  3680. "config",
  3681. "configuration",
  3682. "options"
  3683. ],
  3684. "time": "2020-07-12T12:58:00+00:00"
  3685. },
  3686. {
  3687. "name": "symfony/orm-pack",
  3688. "version": "v2.0.0",
  3689. "source": {
  3690. "type": "git",
  3691. "url": "https://github.com/symfony/orm-pack.git",
  3692. "reference": "46aa731f213140388ee11ff3d2b6776a3b4a0d90"
  3693. },
  3694. "dist": {
  3695. "type": "zip",
  3696. "url": "https://api.github.com/repos/symfony/orm-pack/zipball/46aa731f213140388ee11ff3d2b6776a3b4a0d90",
  3697. "reference": "46aa731f213140388ee11ff3d2b6776a3b4a0d90",
  3698. "shasum": ""
  3699. },
  3700. "require": {
  3701. "composer/package-versions-deprecated": "*",
  3702. "doctrine/doctrine-bundle": "*",
  3703. "doctrine/doctrine-migrations-bundle": "*",
  3704. "doctrine/orm": "*"
  3705. },
  3706. "type": "symfony-pack",
  3707. "notification-url": "https://packagist.org/downloads/",
  3708. "license": [
  3709. "MIT"
  3710. ],
  3711. "description": "A pack for the Doctrine ORM",
  3712. "time": "2020-07-14T14:34:28+00:00"
  3713. },
  3714. {
  3715. "name": "symfony/polyfill-intl-grapheme",
  3716. "version": "v1.18.0",
  3717. "source": {
  3718. "type": "git",
  3719. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3720. "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5"
  3721. },
  3722. "dist": {
  3723. "type": "zip",
  3724. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b740103edbdcc39602239ee8860f0f45a8eb9aa5",
  3725. "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5",
  3726. "shasum": ""
  3727. },
  3728. "require": {
  3729. "php": ">=5.3.3"
  3730. },
  3731. "suggest": {
  3732. "ext-intl": "For best performance"
  3733. },
  3734. "type": "library",
  3735. "extra": {
  3736. "branch-alias": {
  3737. "dev-master": "1.18-dev"
  3738. },
  3739. "thanks": {
  3740. "name": "symfony/polyfill",
  3741. "url": "https://github.com/symfony/polyfill"
  3742. }
  3743. },
  3744. "autoload": {
  3745. "psr-4": {
  3746. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3747. },
  3748. "files": [
  3749. "bootstrap.php"
  3750. ]
  3751. },
  3752. "notification-url": "https://packagist.org/downloads/",
  3753. "license": [
  3754. "MIT"
  3755. ],
  3756. "authors": [
  3757. {
  3758. "name": "Nicolas Grekas",
  3759. "email": "p@tchwork.com"
  3760. },
  3761. {
  3762. "name": "Symfony Community",
  3763. "homepage": "https://symfony.com/contributors"
  3764. }
  3765. ],
  3766. "description": "Symfony polyfill for intl's grapheme_* functions",
  3767. "homepage": "https://symfony.com",
  3768. "keywords": [
  3769. "compatibility",
  3770. "grapheme",
  3771. "intl",
  3772. "polyfill",
  3773. "portable",
  3774. "shim"
  3775. ],
  3776. "time": "2020-07-14T12:35:20+00:00"
  3777. },
  3778. {
  3779. "name": "symfony/polyfill-intl-icu",
  3780. "version": "v1.18.0",
  3781. "source": {
  3782. "type": "git",
  3783. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  3784. "reference": "4e45a6e39041a9cc78835b11abc47874ae302a55"
  3785. },
  3786. "dist": {
  3787. "type": "zip",
  3788. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/4e45a6e39041a9cc78835b11abc47874ae302a55",
  3789. "reference": "4e45a6e39041a9cc78835b11abc47874ae302a55",
  3790. "shasum": ""
  3791. },
  3792. "require": {
  3793. "php": ">=5.3.3",
  3794. "symfony/intl": "~2.3|~3.0|~4.0|~5.0"
  3795. },
  3796. "suggest": {
  3797. "ext-intl": "For best performance"
  3798. },
  3799. "type": "library",
  3800. "extra": {
  3801. "branch-alias": {
  3802. "dev-master": "1.18-dev"
  3803. },
  3804. "thanks": {
  3805. "name": "symfony/polyfill",
  3806. "url": "https://github.com/symfony/polyfill"
  3807. }
  3808. },
  3809. "autoload": {
  3810. "files": [
  3811. "bootstrap.php"
  3812. ]
  3813. },
  3814. "notification-url": "https://packagist.org/downloads/",
  3815. "license": [
  3816. "MIT"
  3817. ],
  3818. "authors": [
  3819. {
  3820. "name": "Nicolas Grekas",
  3821. "email": "p@tchwork.com"
  3822. },
  3823. {
  3824. "name": "Symfony Community",
  3825. "homepage": "https://symfony.com/contributors"
  3826. }
  3827. ],
  3828. "description": "Symfony polyfill for intl's ICU-related data and classes",
  3829. "homepage": "https://symfony.com",
  3830. "keywords": [
  3831. "compatibility",
  3832. "icu",
  3833. "intl",
  3834. "polyfill",
  3835. "portable",
  3836. "shim"
  3837. ],
  3838. "time": "2020-07-14T12:35:20+00:00"
  3839. },
  3840. {
  3841. "name": "symfony/polyfill-intl-idn",
  3842. "version": "v1.18.0",
  3843. "source": {
  3844. "type": "git",
  3845. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3846. "reference": "bc6549d068d0160e0f10f7a5a23c7d1406b95ebe"
  3847. },
  3848. "dist": {
  3849. "type": "zip",
  3850. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/bc6549d068d0160e0f10f7a5a23c7d1406b95ebe",
  3851. "reference": "bc6549d068d0160e0f10f7a5a23c7d1406b95ebe",
  3852. "shasum": ""
  3853. },
  3854. "require": {
  3855. "php": ">=5.3.3",
  3856. "symfony/polyfill-intl-normalizer": "^1.10",
  3857. "symfony/polyfill-php70": "^1.10",
  3858. "symfony/polyfill-php72": "^1.10"
  3859. },
  3860. "suggest": {
  3861. "ext-intl": "For best performance"
  3862. },
  3863. "type": "library",
  3864. "extra": {
  3865. "branch-alias": {
  3866. "dev-master": "1.18-dev"
  3867. },
  3868. "thanks": {
  3869. "name": "symfony/polyfill",
  3870. "url": "https://github.com/symfony/polyfill"
  3871. }
  3872. },
  3873. "autoload": {
  3874. "psr-4": {
  3875. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3876. },
  3877. "files": [
  3878. "bootstrap.php"
  3879. ]
  3880. },
  3881. "notification-url": "https://packagist.org/downloads/",
  3882. "license": [
  3883. "MIT"
  3884. ],
  3885. "authors": [
  3886. {
  3887. "name": "Laurent Bassin",
  3888. "email": "laurent@bassin.info"
  3889. },
  3890. {
  3891. "name": "Trevor Rowbotham",
  3892. "email": "trevor.rowbotham@pm.me"
  3893. },
  3894. {
  3895. "name": "Symfony Community",
  3896. "homepage": "https://symfony.com/contributors"
  3897. }
  3898. ],
  3899. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3900. "homepage": "https://symfony.com",
  3901. "keywords": [
  3902. "compatibility",
  3903. "idn",
  3904. "intl",
  3905. "polyfill",
  3906. "portable",
  3907. "shim"
  3908. ],
  3909. "time": "2020-07-14T12:35:20+00:00"
  3910. },
  3911. {
  3912. "name": "symfony/polyfill-intl-normalizer",
  3913. "version": "v1.18.0",
  3914. "source": {
  3915. "type": "git",
  3916. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3917. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e"
  3918. },
  3919. "dist": {
  3920. "type": "zip",
  3921. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  3922. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  3923. "shasum": ""
  3924. },
  3925. "require": {
  3926. "php": ">=5.3.3"
  3927. },
  3928. "suggest": {
  3929. "ext-intl": "For best performance"
  3930. },
  3931. "type": "library",
  3932. "extra": {
  3933. "branch-alias": {
  3934. "dev-master": "1.18-dev"
  3935. },
  3936. "thanks": {
  3937. "name": "symfony/polyfill",
  3938. "url": "https://github.com/symfony/polyfill"
  3939. }
  3940. },
  3941. "autoload": {
  3942. "psr-4": {
  3943. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3944. },
  3945. "files": [
  3946. "bootstrap.php"
  3947. ],
  3948. "classmap": [
  3949. "Resources/stubs"
  3950. ]
  3951. },
  3952. "notification-url": "https://packagist.org/downloads/",
  3953. "license": [
  3954. "MIT"
  3955. ],
  3956. "authors": [
  3957. {
  3958. "name": "Nicolas Grekas",
  3959. "email": "p@tchwork.com"
  3960. },
  3961. {
  3962. "name": "Symfony Community",
  3963. "homepage": "https://symfony.com/contributors"
  3964. }
  3965. ],
  3966. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3967. "homepage": "https://symfony.com",
  3968. "keywords": [
  3969. "compatibility",
  3970. "intl",
  3971. "normalizer",
  3972. "polyfill",
  3973. "portable",
  3974. "shim"
  3975. ],
  3976. "time": "2020-07-14T12:35:20+00:00"
  3977. },
  3978. {
  3979. "name": "symfony/polyfill-mbstring",
  3980. "version": "v1.18.0",
  3981. "source": {
  3982. "type": "git",
  3983. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3984. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a"
  3985. },
  3986. "dist": {
  3987. "type": "zip",
  3988. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a6977d63bf9a0ad4c65cd352709e230876f9904a",
  3989. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a",
  3990. "shasum": ""
  3991. },
  3992. "require": {
  3993. "php": ">=5.3.3"
  3994. },
  3995. "suggest": {
  3996. "ext-mbstring": "For best performance"
  3997. },
  3998. "type": "library",
  3999. "extra": {
  4000. "branch-alias": {
  4001. "dev-master": "1.18-dev"
  4002. },
  4003. "thanks": {
  4004. "name": "symfony/polyfill",
  4005. "url": "https://github.com/symfony/polyfill"
  4006. }
  4007. },
  4008. "autoload": {
  4009. "psr-4": {
  4010. "Symfony\\Polyfill\\Mbstring\\": ""
  4011. },
  4012. "files": [
  4013. "bootstrap.php"
  4014. ]
  4015. },
  4016. "notification-url": "https://packagist.org/downloads/",
  4017. "license": [
  4018. "MIT"
  4019. ],
  4020. "authors": [
  4021. {
  4022. "name": "Nicolas Grekas",
  4023. "email": "p@tchwork.com"
  4024. },
  4025. {
  4026. "name": "Symfony Community",
  4027. "homepage": "https://symfony.com/contributors"
  4028. }
  4029. ],
  4030. "description": "Symfony polyfill for the Mbstring extension",
  4031. "homepage": "https://symfony.com",
  4032. "keywords": [
  4033. "compatibility",
  4034. "mbstring",
  4035. "polyfill",
  4036. "portable",
  4037. "shim"
  4038. ],
  4039. "time": "2020-07-14T12:35:20+00:00"
  4040. },
  4041. {
  4042. "name": "symfony/polyfill-php72",
  4043. "version": "v1.18.0",
  4044. "source": {
  4045. "type": "git",
  4046. "url": "https://github.com/symfony/polyfill-php72.git",
  4047. "reference": "639447d008615574653fb3bc60d1986d7172eaae"
  4048. },
  4049. "dist": {
  4050. "type": "zip",
  4051. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/639447d008615574653fb3bc60d1986d7172eaae",
  4052. "reference": "639447d008615574653fb3bc60d1986d7172eaae",
  4053. "shasum": ""
  4054. },
  4055. "require": {
  4056. "php": ">=5.3.3"
  4057. },
  4058. "type": "library",
  4059. "extra": {
  4060. "branch-alias": {
  4061. "dev-master": "1.18-dev"
  4062. },
  4063. "thanks": {
  4064. "name": "symfony/polyfill",
  4065. "url": "https://github.com/symfony/polyfill"
  4066. }
  4067. },
  4068. "autoload": {
  4069. "psr-4": {
  4070. "Symfony\\Polyfill\\Php72\\": ""
  4071. },
  4072. "files": [
  4073. "bootstrap.php"
  4074. ]
  4075. },
  4076. "notification-url": "https://packagist.org/downloads/",
  4077. "license": [
  4078. "MIT"
  4079. ],
  4080. "authors": [
  4081. {
  4082. "name": "Nicolas Grekas",
  4083. "email": "p@tchwork.com"
  4084. },
  4085. {
  4086. "name": "Symfony Community",
  4087. "homepage": "https://symfony.com/contributors"
  4088. }
  4089. ],
  4090. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4091. "homepage": "https://symfony.com",
  4092. "keywords": [
  4093. "compatibility",
  4094. "polyfill",
  4095. "portable",
  4096. "shim"
  4097. ],
  4098. "time": "2020-07-14T12:35:20+00:00"
  4099. },
  4100. {
  4101. "name": "symfony/polyfill-php73",
  4102. "version": "v1.18.0",
  4103. "source": {
  4104. "type": "git",
  4105. "url": "https://github.com/symfony/polyfill-php73.git",
  4106. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca"
  4107. },
  4108. "dist": {
  4109. "type": "zip",
  4110. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  4111. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  4112. "shasum": ""
  4113. },
  4114. "require": {
  4115. "php": ">=5.3.3"
  4116. },
  4117. "type": "library",
  4118. "extra": {
  4119. "branch-alias": {
  4120. "dev-master": "1.18-dev"
  4121. },
  4122. "thanks": {
  4123. "name": "symfony/polyfill",
  4124. "url": "https://github.com/symfony/polyfill"
  4125. }
  4126. },
  4127. "autoload": {
  4128. "psr-4": {
  4129. "Symfony\\Polyfill\\Php73\\": ""
  4130. },
  4131. "files": [
  4132. "bootstrap.php"
  4133. ],
  4134. "classmap": [
  4135. "Resources/stubs"
  4136. ]
  4137. },
  4138. "notification-url": "https://packagist.org/downloads/",
  4139. "license": [
  4140. "MIT"
  4141. ],
  4142. "authors": [
  4143. {
  4144. "name": "Nicolas Grekas",
  4145. "email": "p@tchwork.com"
  4146. },
  4147. {
  4148. "name": "Symfony Community",
  4149. "homepage": "https://symfony.com/contributors"
  4150. }
  4151. ],
  4152. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4153. "homepage": "https://symfony.com",
  4154. "keywords": [
  4155. "compatibility",
  4156. "polyfill",
  4157. "portable",
  4158. "shim"
  4159. ],
  4160. "time": "2020-07-14T12:35:20+00:00"
  4161. },
  4162. {
  4163. "name": "symfony/polyfill-php80",
  4164. "version": "v1.18.0",
  4165. "source": {
  4166. "type": "git",
  4167. "url": "https://github.com/symfony/polyfill-php80.git",
  4168. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981"
  4169. },
  4170. "dist": {
  4171. "type": "zip",
  4172. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  4173. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  4174. "shasum": ""
  4175. },
  4176. "require": {
  4177. "php": ">=7.0.8"
  4178. },
  4179. "type": "library",
  4180. "extra": {
  4181. "branch-alias": {
  4182. "dev-master": "1.18-dev"
  4183. },
  4184. "thanks": {
  4185. "name": "symfony/polyfill",
  4186. "url": "https://github.com/symfony/polyfill"
  4187. }
  4188. },
  4189. "autoload": {
  4190. "psr-4": {
  4191. "Symfony\\Polyfill\\Php80\\": ""
  4192. },
  4193. "files": [
  4194. "bootstrap.php"
  4195. ],
  4196. "classmap": [
  4197. "Resources/stubs"
  4198. ]
  4199. },
  4200. "notification-url": "https://packagist.org/downloads/",
  4201. "license": [
  4202. "MIT"
  4203. ],
  4204. "authors": [
  4205. {
  4206. "name": "Ion Bazan",
  4207. "email": "ion.bazan@gmail.com"
  4208. },
  4209. {
  4210. "name": "Nicolas Grekas",
  4211. "email": "p@tchwork.com"
  4212. },
  4213. {
  4214. "name": "Symfony Community",
  4215. "homepage": "https://symfony.com/contributors"
  4216. }
  4217. ],
  4218. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4219. "homepage": "https://symfony.com",
  4220. "keywords": [
  4221. "compatibility",
  4222. "polyfill",
  4223. "portable",
  4224. "shim"
  4225. ],
  4226. "time": "2020-07-14T12:35:20+00:00"
  4227. },
  4228. {
  4229. "name": "symfony/process",
  4230. "version": "v5.1.3",
  4231. "source": {
  4232. "type": "git",
  4233. "url": "https://github.com/symfony/process.git",
  4234. "reference": "1864216226af21eb76d9477f691e7cbf198e0402"
  4235. },
  4236. "dist": {
  4237. "type": "zip",
  4238. "url": "https://api.github.com/repos/symfony/process/zipball/1864216226af21eb76d9477f691e7cbf198e0402",
  4239. "reference": "1864216226af21eb76d9477f691e7cbf198e0402",
  4240. "shasum": ""
  4241. },
  4242. "require": {
  4243. "php": ">=7.2.5",
  4244. "symfony/polyfill-php80": "^1.15"
  4245. },
  4246. "type": "library",
  4247. "extra": {
  4248. "branch-alias": {
  4249. "dev-master": "5.1-dev"
  4250. }
  4251. },
  4252. "autoload": {
  4253. "psr-4": {
  4254. "Symfony\\Component\\Process\\": ""
  4255. },
  4256. "exclude-from-classmap": [
  4257. "/Tests/"
  4258. ]
  4259. },
  4260. "notification-url": "https://packagist.org/downloads/",
  4261. "license": [
  4262. "MIT"
  4263. ],
  4264. "authors": [
  4265. {
  4266. "name": "Fabien Potencier",
  4267. "email": "fabien@symfony.com"
  4268. },
  4269. {
  4270. "name": "Symfony Community",
  4271. "homepage": "https://symfony.com/contributors"
  4272. }
  4273. ],
  4274. "description": "Symfony Process Component",
  4275. "homepage": "https://symfony.com",
  4276. "time": "2020-07-23T08:36:24+00:00"
  4277. },
  4278. {
  4279. "name": "symfony/property-access",
  4280. "version": "v5.1.3",
  4281. "source": {
  4282. "type": "git",
  4283. "url": "https://github.com/symfony/property-access.git",
  4284. "reference": "eb617a57fc38f43bf4208dcbdb2dab3c14d9cbd9"
  4285. },
  4286. "dist": {
  4287. "type": "zip",
  4288. "url": "https://api.github.com/repos/symfony/property-access/zipball/eb617a57fc38f43bf4208dcbdb2dab3c14d9cbd9",
  4289. "reference": "eb617a57fc38f43bf4208dcbdb2dab3c14d9cbd9",
  4290. "shasum": ""
  4291. },
  4292. "require": {
  4293. "php": ">=7.2.5",
  4294. "symfony/polyfill-php80": "^1.15",
  4295. "symfony/property-info": "^5.1.1"
  4296. },
  4297. "require-dev": {
  4298. "symfony/cache": "^4.4|^5.0"
  4299. },
  4300. "suggest": {
  4301. "psr/cache-implementation": "To cache access methods."
  4302. },
  4303. "type": "library",
  4304. "extra": {
  4305. "branch-alias": {
  4306. "dev-master": "5.1-dev"
  4307. }
  4308. },
  4309. "autoload": {
  4310. "psr-4": {
  4311. "Symfony\\Component\\PropertyAccess\\": ""
  4312. },
  4313. "exclude-from-classmap": [
  4314. "/Tests/"
  4315. ]
  4316. },
  4317. "notification-url": "https://packagist.org/downloads/",
  4318. "license": [
  4319. "MIT"
  4320. ],
  4321. "authors": [
  4322. {
  4323. "name": "Fabien Potencier",
  4324. "email": "fabien@symfony.com"
  4325. },
  4326. {
  4327. "name": "Symfony Community",
  4328. "homepage": "https://symfony.com/contributors"
  4329. }
  4330. ],
  4331. "description": "Symfony PropertyAccess Component",
  4332. "homepage": "https://symfony.com",
  4333. "keywords": [
  4334. "access",
  4335. "array",
  4336. "extraction",
  4337. "index",
  4338. "injection",
  4339. "object",
  4340. "property",
  4341. "property path",
  4342. "reflection"
  4343. ],
  4344. "time": "2020-07-03T07:49:29+00:00"
  4345. },
  4346. {
  4347. "name": "symfony/property-info",
  4348. "version": "v5.1.3",
  4349. "source": {
  4350. "type": "git",
  4351. "url": "https://github.com/symfony/property-info.git",
  4352. "reference": "0c4813930953f6db6c62ebec8ee695a897b89020"
  4353. },
  4354. "dist": {
  4355. "type": "zip",
  4356. "url": "https://api.github.com/repos/symfony/property-info/zipball/0c4813930953f6db6c62ebec8ee695a897b89020",
  4357. "reference": "0c4813930953f6db6c62ebec8ee695a897b89020",
  4358. "shasum": ""
  4359. },
  4360. "require": {
  4361. "php": ">=7.2.5",
  4362. "symfony/polyfill-php80": "^1.15",
  4363. "symfony/string": "^5.1"
  4364. },
  4365. "conflict": {
  4366. "phpdocumentor/reflection-docblock": "<3.2.2",
  4367. "phpdocumentor/type-resolver": "<0.3.0",
  4368. "symfony/dependency-injection": "<4.4"
  4369. },
  4370. "require-dev": {
  4371. "doctrine/annotations": "~1.7",
  4372. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4373. "symfony/cache": "^4.4|^5.0",
  4374. "symfony/dependency-injection": "^4.4|^5.0",
  4375. "symfony/serializer": "^4.4|^5.0"
  4376. },
  4377. "suggest": {
  4378. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  4379. "psr/cache-implementation": "To cache results",
  4380. "symfony/doctrine-bridge": "To use Doctrine metadata",
  4381. "symfony/serializer": "To use Serializer metadata"
  4382. },
  4383. "type": "library",
  4384. "extra": {
  4385. "branch-alias": {
  4386. "dev-master": "5.1-dev"
  4387. }
  4388. },
  4389. "autoload": {
  4390. "psr-4": {
  4391. "Symfony\\Component\\PropertyInfo\\": ""
  4392. },
  4393. "exclude-from-classmap": [
  4394. "/Tests/"
  4395. ]
  4396. },
  4397. "notification-url": "https://packagist.org/downloads/",
  4398. "license": [
  4399. "MIT"
  4400. ],
  4401. "authors": [
  4402. {
  4403. "name": "Kévin Dunglas",
  4404. "email": "dunglas@gmail.com"
  4405. },
  4406. {
  4407. "name": "Symfony Community",
  4408. "homepage": "https://symfony.com/contributors"
  4409. }
  4410. ],
  4411. "description": "Symfony Property Info Component",
  4412. "homepage": "https://symfony.com",
  4413. "keywords": [
  4414. "doctrine",
  4415. "phpdoc",
  4416. "property",
  4417. "symfony",
  4418. "type",
  4419. "validator"
  4420. ],
  4421. "time": "2020-06-18T21:19:28+00:00"
  4422. },
  4423. {
  4424. "name": "symfony/routing",
  4425. "version": "v5.1.3",
  4426. "source": {
  4427. "type": "git",
  4428. "url": "https://github.com/symfony/routing.git",
  4429. "reference": "08c9a82f09d12ee048f85e76e0d783f82844eb5d"
  4430. },
  4431. "dist": {
  4432. "type": "zip",
  4433. "url": "https://api.github.com/repos/symfony/routing/zipball/08c9a82f09d12ee048f85e76e0d783f82844eb5d",
  4434. "reference": "08c9a82f09d12ee048f85e76e0d783f82844eb5d",
  4435. "shasum": ""
  4436. },
  4437. "require": {
  4438. "php": ">=7.2.5",
  4439. "symfony/deprecation-contracts": "^2.1",
  4440. "symfony/polyfill-php80": "^1.15"
  4441. },
  4442. "conflict": {
  4443. "symfony/config": "<5.0",
  4444. "symfony/dependency-injection": "<4.4",
  4445. "symfony/yaml": "<4.4"
  4446. },
  4447. "require-dev": {
  4448. "doctrine/annotations": "~1.2",
  4449. "psr/log": "~1.0",
  4450. "symfony/config": "^5.0",
  4451. "symfony/dependency-injection": "^4.4|^5.0",
  4452. "symfony/expression-language": "^4.4|^5.0",
  4453. "symfony/http-foundation": "^4.4|^5.0",
  4454. "symfony/yaml": "^4.4|^5.0"
  4455. },
  4456. "suggest": {
  4457. "doctrine/annotations": "For using the annotation loader",
  4458. "symfony/config": "For using the all-in-one router or any loader",
  4459. "symfony/expression-language": "For using expression matching",
  4460. "symfony/http-foundation": "For using a Symfony Request object",
  4461. "symfony/yaml": "For using the YAML loader"
  4462. },
  4463. "type": "library",
  4464. "extra": {
  4465. "branch-alias": {
  4466. "dev-master": "5.1-dev"
  4467. }
  4468. },
  4469. "autoload": {
  4470. "psr-4": {
  4471. "Symfony\\Component\\Routing\\": ""
  4472. },
  4473. "exclude-from-classmap": [
  4474. "/Tests/"
  4475. ]
  4476. },
  4477. "notification-url": "https://packagist.org/downloads/",
  4478. "license": [
  4479. "MIT"
  4480. ],
  4481. "authors": [
  4482. {
  4483. "name": "Fabien Potencier",
  4484. "email": "fabien@symfony.com"
  4485. },
  4486. {
  4487. "name": "Symfony Community",
  4488. "homepage": "https://symfony.com/contributors"
  4489. }
  4490. ],
  4491. "description": "Symfony Routing Component",
  4492. "homepage": "https://symfony.com",
  4493. "keywords": [
  4494. "router",
  4495. "routing",
  4496. "uri",
  4497. "url"
  4498. ],
  4499. "time": "2020-06-18T18:24:02+00:00"
  4500. },
  4501. {
  4502. "name": "symfony/security-bundle",
  4503. "version": "v5.1.3",
  4504. "source": {
  4505. "type": "git",
  4506. "url": "https://github.com/symfony/security-bundle.git",
  4507. "reference": "7e64ee9df4f7565133c745244816be65db8aed0a"
  4508. },
  4509. "dist": {
  4510. "type": "zip",
  4511. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/7e64ee9df4f7565133c745244816be65db8aed0a",
  4512. "reference": "7e64ee9df4f7565133c745244816be65db8aed0a",
  4513. "shasum": ""
  4514. },
  4515. "require": {
  4516. "ext-xml": "*",
  4517. "php": ">=7.2.5",
  4518. "symfony/config": "^4.4|^5.0",
  4519. "symfony/dependency-injection": "^5.1",
  4520. "symfony/event-dispatcher": "^5.1",
  4521. "symfony/http-kernel": "^5.0",
  4522. "symfony/polyfill-php80": "^1.15",
  4523. "symfony/security-core": "^5.1",
  4524. "symfony/security-csrf": "^4.4|^5.0",
  4525. "symfony/security-guard": "^5.1",
  4526. "symfony/security-http": "^5.1,>=5.1.2"
  4527. },
  4528. "conflict": {
  4529. "symfony/browser-kit": "<4.4",
  4530. "symfony/console": "<4.4",
  4531. "symfony/framework-bundle": "<4.4",
  4532. "symfony/ldap": "<4.4",
  4533. "symfony/twig-bundle": "<4.4"
  4534. },
  4535. "require-dev": {
  4536. "doctrine/doctrine-bundle": "^2.0",
  4537. "symfony/asset": "^4.4|^5.0",
  4538. "symfony/browser-kit": "^4.4|^5.0",
  4539. "symfony/console": "^4.4|^5.0",
  4540. "symfony/css-selector": "^4.4|^5.0",
  4541. "symfony/dom-crawler": "^4.4|^5.0",
  4542. "symfony/expression-language": "^4.4|^5.0",
  4543. "symfony/form": "^4.4|^5.0",
  4544. "symfony/framework-bundle": "^4.4|^5.0",
  4545. "symfony/process": "^4.4|^5.0",
  4546. "symfony/serializer": "^4.4|^5.0",
  4547. "symfony/translation": "^4.4|^5.0",
  4548. "symfony/twig-bridge": "^4.4|^5.0",
  4549. "symfony/twig-bundle": "^4.4|^5.0",
  4550. "symfony/validator": "^4.4|^5.0",
  4551. "symfony/yaml": "^4.4|^5.0",
  4552. "twig/twig": "^2.10|^3.0"
  4553. },
  4554. "type": "symfony-bundle",
  4555. "extra": {
  4556. "branch-alias": {
  4557. "dev-master": "5.1-dev"
  4558. }
  4559. },
  4560. "autoload": {
  4561. "psr-4": {
  4562. "Symfony\\Bundle\\SecurityBundle\\": ""
  4563. },
  4564. "exclude-from-classmap": [
  4565. "/Tests/"
  4566. ]
  4567. },
  4568. "notification-url": "https://packagist.org/downloads/",
  4569. "license": [
  4570. "MIT"
  4571. ],
  4572. "authors": [
  4573. {
  4574. "name": "Fabien Potencier",
  4575. "email": "fabien@symfony.com"
  4576. },
  4577. {
  4578. "name": "Symfony Community",
  4579. "homepage": "https://symfony.com/contributors"
  4580. }
  4581. ],
  4582. "description": "Symfony SecurityBundle",
  4583. "homepage": "https://symfony.com",
  4584. "time": "2020-07-23T08:36:24+00:00"
  4585. },
  4586. {
  4587. "name": "symfony/security-core",
  4588. "version": "v5.1.3",
  4589. "source": {
  4590. "type": "git",
  4591. "url": "https://github.com/symfony/security-core.git",
  4592. "reference": "18551ee726b18591d1da5c3209d61f5904fff3b3"
  4593. },
  4594. "dist": {
  4595. "type": "zip",
  4596. "url": "https://api.github.com/repos/symfony/security-core/zipball/18551ee726b18591d1da5c3209d61f5904fff3b3",
  4597. "reference": "18551ee726b18591d1da5c3209d61f5904fff3b3",
  4598. "shasum": ""
  4599. },
  4600. "require": {
  4601. "php": ">=7.2.5",
  4602. "symfony/deprecation-contracts": "^2.1",
  4603. "symfony/event-dispatcher-contracts": "^1.1|^2",
  4604. "symfony/polyfill-php80": "^1.15",
  4605. "symfony/service-contracts": "^1.1.6|^2"
  4606. },
  4607. "conflict": {
  4608. "symfony/event-dispatcher": "<4.4",
  4609. "symfony/ldap": "<4.4",
  4610. "symfony/security-guard": "<4.4"
  4611. },
  4612. "require-dev": {
  4613. "psr/container": "^1.0",
  4614. "psr/log": "~1.0",
  4615. "symfony/event-dispatcher": "^4.4|^5.0",
  4616. "symfony/expression-language": "^4.4|^5.0",
  4617. "symfony/http-foundation": "^4.4|^5.0",
  4618. "symfony/ldap": "^4.4|^5.0",
  4619. "symfony/validator": "^4.4|^5.0"
  4620. },
  4621. "suggest": {
  4622. "psr/container-implementation": "To instantiate the Security class",
  4623. "symfony/event-dispatcher": "",
  4624. "symfony/expression-language": "For using the expression voter",
  4625. "symfony/http-foundation": "",
  4626. "symfony/ldap": "For using LDAP integration",
  4627. "symfony/validator": "For using the user password constraint"
  4628. },
  4629. "type": "library",
  4630. "extra": {
  4631. "branch-alias": {
  4632. "dev-master": "5.1-dev"
  4633. }
  4634. },
  4635. "autoload": {
  4636. "psr-4": {
  4637. "Symfony\\Component\\Security\\Core\\": ""
  4638. },
  4639. "exclude-from-classmap": [
  4640. "/Tests/"
  4641. ]
  4642. },
  4643. "notification-url": "https://packagist.org/downloads/",
  4644. "license": [
  4645. "MIT"
  4646. ],
  4647. "authors": [
  4648. {
  4649. "name": "Fabien Potencier",
  4650. "email": "fabien@symfony.com"
  4651. },
  4652. {
  4653. "name": "Symfony Community",
  4654. "homepage": "https://symfony.com/contributors"
  4655. }
  4656. ],
  4657. "description": "Symfony Security Component - Core Library",
  4658. "homepage": "https://symfony.com",
  4659. "time": "2020-06-28T15:32:35+00:00"
  4660. },
  4661. {
  4662. "name": "symfony/security-csrf",
  4663. "version": "v5.1.3",
  4664. "source": {
  4665. "type": "git",
  4666. "url": "https://github.com/symfony/security-csrf.git",
  4667. "reference": "962323e4db4458d731d5006f14019a22a2f84b06"
  4668. },
  4669. "dist": {
  4670. "type": "zip",
  4671. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/962323e4db4458d731d5006f14019a22a2f84b06",
  4672. "reference": "962323e4db4458d731d5006f14019a22a2f84b06",
  4673. "shasum": ""
  4674. },
  4675. "require": {
  4676. "php": ">=7.2.5",
  4677. "symfony/security-core": "^4.4|^5.0"
  4678. },
  4679. "conflict": {
  4680. "symfony/http-foundation": "<4.4"
  4681. },
  4682. "require-dev": {
  4683. "symfony/http-foundation": "^4.4|^5.0"
  4684. },
  4685. "suggest": {
  4686. "symfony/http-foundation": "For using the class SessionTokenStorage."
  4687. },
  4688. "type": "library",
  4689. "extra": {
  4690. "branch-alias": {
  4691. "dev-master": "5.1-dev"
  4692. }
  4693. },
  4694. "autoload": {
  4695. "psr-4": {
  4696. "Symfony\\Component\\Security\\Csrf\\": ""
  4697. },
  4698. "exclude-from-classmap": [
  4699. "/Tests/"
  4700. ]
  4701. },
  4702. "notification-url": "https://packagist.org/downloads/",
  4703. "license": [
  4704. "MIT"
  4705. ],
  4706. "authors": [
  4707. {
  4708. "name": "Fabien Potencier",
  4709. "email": "fabien@symfony.com"
  4710. },
  4711. {
  4712. "name": "Symfony Community",
  4713. "homepage": "https://symfony.com/contributors"
  4714. }
  4715. ],
  4716. "description": "Symfony Security Component - CSRF Library",
  4717. "homepage": "https://symfony.com",
  4718. "time": "2020-05-20T17:43:50+00:00"
  4719. },
  4720. {
  4721. "name": "symfony/security-guard",
  4722. "version": "v5.1.3",
  4723. "source": {
  4724. "type": "git",
  4725. "url": "https://github.com/symfony/security-guard.git",
  4726. "reference": "85c368be963e9f0df9e93d830f966fc0af531703"
  4727. },
  4728. "dist": {
  4729. "type": "zip",
  4730. "url": "https://api.github.com/repos/symfony/security-guard/zipball/85c368be963e9f0df9e93d830f966fc0af531703",
  4731. "reference": "85c368be963e9f0df9e93d830f966fc0af531703",
  4732. "shasum": ""
  4733. },
  4734. "require": {
  4735. "php": ">=7.2.5",
  4736. "symfony/polyfill-php80": "^1.15",
  4737. "symfony/security-core": "^5.0",
  4738. "symfony/security-http": "^4.4.1|^5.0.1"
  4739. },
  4740. "require-dev": {
  4741. "psr/log": "~1.0"
  4742. },
  4743. "type": "library",
  4744. "extra": {
  4745. "branch-alias": {
  4746. "dev-master": "5.1-dev"
  4747. }
  4748. },
  4749. "autoload": {
  4750. "psr-4": {
  4751. "Symfony\\Component\\Security\\Guard\\": ""
  4752. },
  4753. "exclude-from-classmap": [
  4754. "/Tests/"
  4755. ]
  4756. },
  4757. "notification-url": "https://packagist.org/downloads/",
  4758. "license": [
  4759. "MIT"
  4760. ],
  4761. "authors": [
  4762. {
  4763. "name": "Fabien Potencier",
  4764. "email": "fabien@symfony.com"
  4765. },
  4766. {
  4767. "name": "Symfony Community",
  4768. "homepage": "https://symfony.com/contributors"
  4769. }
  4770. ],
  4771. "description": "Symfony Security Component - Guard",
  4772. "homepage": "https://symfony.com",
  4773. "time": "2020-05-20T17:43:50+00:00"
  4774. },
  4775. {
  4776. "name": "symfony/security-http",
  4777. "version": "v5.1.3",
  4778. "source": {
  4779. "type": "git",
  4780. "url": "https://github.com/symfony/security-http.git",
  4781. "reference": "436e749842736bd047c96ae53e86a8b6dc9d2222"
  4782. },
  4783. "dist": {
  4784. "type": "zip",
  4785. "url": "https://api.github.com/repos/symfony/security-http/zipball/436e749842736bd047c96ae53e86a8b6dc9d2222",
  4786. "reference": "436e749842736bd047c96ae53e86a8b6dc9d2222",
  4787. "shasum": ""
  4788. },
  4789. "require": {
  4790. "php": ">=7.2.5",
  4791. "symfony/deprecation-contracts": "^2.1",
  4792. "symfony/http-foundation": "^4.4.7|^5.0.7",
  4793. "symfony/http-kernel": "^4.4|^5.0",
  4794. "symfony/polyfill-php80": "^1.15",
  4795. "symfony/property-access": "^4.4|^5.0",
  4796. "symfony/security-core": "^5.1"
  4797. },
  4798. "conflict": {
  4799. "symfony/event-dispatcher": "<4.3",
  4800. "symfony/security-csrf": "<4.4"
  4801. },
  4802. "require-dev": {
  4803. "psr/log": "~1.0",
  4804. "symfony/routing": "^4.4|^5.0",
  4805. "symfony/security-csrf": "^4.4|^5.0"
  4806. },
  4807. "suggest": {
  4808. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  4809. "symfony/security-csrf": "For using tokens to protect authentication/logout attempts"
  4810. },
  4811. "type": "library",
  4812. "extra": {
  4813. "branch-alias": {
  4814. "dev-master": "5.1-dev"
  4815. }
  4816. },
  4817. "autoload": {
  4818. "psr-4": {
  4819. "Symfony\\Component\\Security\\Http\\": ""
  4820. },
  4821. "exclude-from-classmap": [
  4822. "/Tests/"
  4823. ]
  4824. },
  4825. "notification-url": "https://packagist.org/downloads/",
  4826. "license": [
  4827. "MIT"
  4828. ],
  4829. "authors": [
  4830. {
  4831. "name": "Fabien Potencier",
  4832. "email": "fabien@symfony.com"
  4833. },
  4834. {
  4835. "name": "Symfony Community",
  4836. "homepage": "https://symfony.com/contributors"
  4837. }
  4838. ],
  4839. "description": "Symfony Security Component - HTTP Integration",
  4840. "homepage": "https://symfony.com",
  4841. "time": "2020-07-06T10:10:25+00:00"
  4842. },
  4843. {
  4844. "name": "symfony/serializer",
  4845. "version": "v5.1.3",
  4846. "source": {
  4847. "type": "git",
  4848. "url": "https://github.com/symfony/serializer.git",
  4849. "reference": "c977301a898088f483f7a9b479dd050d84ef3fed"
  4850. },
  4851. "dist": {
  4852. "type": "zip",
  4853. "url": "https://api.github.com/repos/symfony/serializer/zipball/c977301a898088f483f7a9b479dd050d84ef3fed",
  4854. "reference": "c977301a898088f483f7a9b479dd050d84ef3fed",
  4855. "shasum": ""
  4856. },
  4857. "require": {
  4858. "php": ">=7.2.5",
  4859. "symfony/polyfill-ctype": "~1.8",
  4860. "symfony/polyfill-php80": "^1.15"
  4861. },
  4862. "conflict": {
  4863. "phpdocumentor/type-resolver": "<0.2.1",
  4864. "symfony/dependency-injection": "<4.4",
  4865. "symfony/property-access": "<4.4",
  4866. "symfony/property-info": "<4.4",
  4867. "symfony/yaml": "<4.4"
  4868. },
  4869. "require-dev": {
  4870. "doctrine/annotations": "~1.0",
  4871. "doctrine/cache": "~1.0",
  4872. "phpdocumentor/reflection-docblock": "^3.2|^4.0",
  4873. "symfony/cache": "^4.4|^5.0",
  4874. "symfony/config": "^4.4|^5.0",
  4875. "symfony/dependency-injection": "^4.4|^5.0",
  4876. "symfony/error-handler": "^4.4|^5.0",
  4877. "symfony/http-foundation": "^4.4|^5.0",
  4878. "symfony/mime": "^4.4|^5.0",
  4879. "symfony/property-access": "^4.4|^5.0",
  4880. "symfony/property-info": "^4.4|^5.0",
  4881. "symfony/validator": "^4.4|^5.0",
  4882. "symfony/yaml": "^4.4|^5.0"
  4883. },
  4884. "suggest": {
  4885. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  4886. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  4887. "psr/cache-implementation": "For using the metadata cache.",
  4888. "symfony/config": "For using the XML mapping loader.",
  4889. "symfony/mime": "For using a MIME type guesser within the DataUriNormalizer.",
  4890. "symfony/property-access": "For using the ObjectNormalizer.",
  4891. "symfony/property-info": "To deserialize relations.",
  4892. "symfony/yaml": "For using the default YAML mapping loader."
  4893. },
  4894. "type": "library",
  4895. "extra": {
  4896. "branch-alias": {
  4897. "dev-master": "5.1-dev"
  4898. }
  4899. },
  4900. "autoload": {
  4901. "psr-4": {
  4902. "Symfony\\Component\\Serializer\\": ""
  4903. },
  4904. "exclude-from-classmap": [
  4905. "/Tests/"
  4906. ]
  4907. },
  4908. "notification-url": "https://packagist.org/downloads/",
  4909. "license": [
  4910. "MIT"
  4911. ],
  4912. "authors": [
  4913. {
  4914. "name": "Fabien Potencier",
  4915. "email": "fabien@symfony.com"
  4916. },
  4917. {
  4918. "name": "Symfony Community",
  4919. "homepage": "https://symfony.com/contributors"
  4920. }
  4921. ],
  4922. "description": "Symfony Serializer Component",
  4923. "homepage": "https://symfony.com",
  4924. "time": "2020-07-23T08:36:24+00:00"
  4925. },
  4926. {
  4927. "name": "symfony/serializer-pack",
  4928. "version": "v1.0.3",
  4929. "source": {
  4930. "type": "git",
  4931. "url": "https://github.com/symfony/serializer-pack.git",
  4932. "reference": "9bbce72dcad0cca797b678d3bfb764cf923ab28a"
  4933. },
  4934. "dist": {
  4935. "type": "zip",
  4936. "url": "https://api.github.com/repos/symfony/serializer-pack/zipball/9bbce72dcad0cca797b678d3bfb764cf923ab28a",
  4937. "reference": "9bbce72dcad0cca797b678d3bfb764cf923ab28a",
  4938. "shasum": ""
  4939. },
  4940. "require": {
  4941. "doctrine/annotations": "^1.0",
  4942. "php": "^7.0",
  4943. "phpdocumentor/reflection-docblock": "*",
  4944. "symfony/property-access": "*",
  4945. "symfony/property-info": "*",
  4946. "symfony/serializer": "*"
  4947. },
  4948. "type": "symfony-pack",
  4949. "notification-url": "https://packagist.org/downloads/",
  4950. "license": [
  4951. "MIT"
  4952. ],
  4953. "description": "A pack for the Symfony serializer",
  4954. "time": "2020-03-28T16:26:24+00:00"
  4955. },
  4956. {
  4957. "name": "symfony/service-contracts",
  4958. "version": "v2.1.3",
  4959. "source": {
  4960. "type": "git",
  4961. "url": "https://github.com/symfony/service-contracts.git",
  4962. "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442"
  4963. },
  4964. "dist": {
  4965. "type": "zip",
  4966. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/58c7475e5457c5492c26cc740cc0ad7464be9442",
  4967. "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442",
  4968. "shasum": ""
  4969. },
  4970. "require": {
  4971. "php": ">=7.2.5",
  4972. "psr/container": "^1.0"
  4973. },
  4974. "suggest": {
  4975. "symfony/service-implementation": ""
  4976. },
  4977. "type": "library",
  4978. "extra": {
  4979. "branch-alias": {
  4980. "dev-master": "2.1-dev"
  4981. },
  4982. "thanks": {
  4983. "name": "symfony/contracts",
  4984. "url": "https://github.com/symfony/contracts"
  4985. }
  4986. },
  4987. "autoload": {
  4988. "psr-4": {
  4989. "Symfony\\Contracts\\Service\\": ""
  4990. }
  4991. },
  4992. "notification-url": "https://packagist.org/downloads/",
  4993. "license": [
  4994. "MIT"
  4995. ],
  4996. "authors": [
  4997. {
  4998. "name": "Nicolas Grekas",
  4999. "email": "p@tchwork.com"
  5000. },
  5001. {
  5002. "name": "Symfony Community",
  5003. "homepage": "https://symfony.com/contributors"
  5004. }
  5005. ],
  5006. "description": "Generic abstractions related to writing services",
  5007. "homepage": "https://symfony.com",
  5008. "keywords": [
  5009. "abstractions",
  5010. "contracts",
  5011. "decoupling",
  5012. "interfaces",
  5013. "interoperability",
  5014. "standards"
  5015. ],
  5016. "time": "2020-07-06T13:23:11+00:00"
  5017. },
  5018. {
  5019. "name": "symfony/stopwatch",
  5020. "version": "v5.1.3",
  5021. "source": {
  5022. "type": "git",
  5023. "url": "https://github.com/symfony/stopwatch.git",
  5024. "reference": "0f7c58cf81dbb5dd67d423a89d577524a2ec0323"
  5025. },
  5026. "dist": {
  5027. "type": "zip",
  5028. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/0f7c58cf81dbb5dd67d423a89d577524a2ec0323",
  5029. "reference": "0f7c58cf81dbb5dd67d423a89d577524a2ec0323",
  5030. "shasum": ""
  5031. },
  5032. "require": {
  5033. "php": ">=7.2.5",
  5034. "symfony/service-contracts": "^1.0|^2"
  5035. },
  5036. "type": "library",
  5037. "extra": {
  5038. "branch-alias": {
  5039. "dev-master": "5.1-dev"
  5040. }
  5041. },
  5042. "autoload": {
  5043. "psr-4": {
  5044. "Symfony\\Component\\Stopwatch\\": ""
  5045. },
  5046. "exclude-from-classmap": [
  5047. "/Tests/"
  5048. ]
  5049. },
  5050. "notification-url": "https://packagist.org/downloads/",
  5051. "license": [
  5052. "MIT"
  5053. ],
  5054. "authors": [
  5055. {
  5056. "name": "Fabien Potencier",
  5057. "email": "fabien@symfony.com"
  5058. },
  5059. {
  5060. "name": "Symfony Community",
  5061. "homepage": "https://symfony.com/contributors"
  5062. }
  5063. ],
  5064. "description": "Symfony Stopwatch Component",
  5065. "homepage": "https://symfony.com",
  5066. "time": "2020-05-20T17:43:50+00:00"
  5067. },
  5068. {
  5069. "name": "symfony/string",
  5070. "version": "v5.1.3",
  5071. "source": {
  5072. "type": "git",
  5073. "url": "https://github.com/symfony/string.git",
  5074. "reference": "f629ba9b611c76224feb21fe2bcbf0b6f992300b"
  5075. },
  5076. "dist": {
  5077. "type": "zip",
  5078. "url": "https://api.github.com/repos/symfony/string/zipball/f629ba9b611c76224feb21fe2bcbf0b6f992300b",
  5079. "reference": "f629ba9b611c76224feb21fe2bcbf0b6f992300b",
  5080. "shasum": ""
  5081. },
  5082. "require": {
  5083. "php": ">=7.2.5",
  5084. "symfony/polyfill-ctype": "~1.8",
  5085. "symfony/polyfill-intl-grapheme": "~1.0",
  5086. "symfony/polyfill-intl-normalizer": "~1.0",
  5087. "symfony/polyfill-mbstring": "~1.0",
  5088. "symfony/polyfill-php80": "~1.15"
  5089. },
  5090. "require-dev": {
  5091. "symfony/error-handler": "^4.4|^5.0",
  5092. "symfony/http-client": "^4.4|^5.0",
  5093. "symfony/translation-contracts": "^1.1|^2",
  5094. "symfony/var-exporter": "^4.4|^5.0"
  5095. },
  5096. "type": "library",
  5097. "extra": {
  5098. "branch-alias": {
  5099. "dev-master": "5.1-dev"
  5100. }
  5101. },
  5102. "autoload": {
  5103. "psr-4": {
  5104. "Symfony\\Component\\String\\": ""
  5105. },
  5106. "files": [
  5107. "Resources/functions.php"
  5108. ],
  5109. "exclude-from-classmap": [
  5110. "/Tests/"
  5111. ]
  5112. },
  5113. "notification-url": "https://packagist.org/downloads/",
  5114. "license": [
  5115. "MIT"
  5116. ],
  5117. "authors": [
  5118. {
  5119. "name": "Nicolas Grekas",
  5120. "email": "p@tchwork.com"
  5121. },
  5122. {
  5123. "name": "Symfony Community",
  5124. "homepage": "https://symfony.com/contributors"
  5125. }
  5126. ],
  5127. "description": "Symfony String component",
  5128. "homepage": "https://symfony.com",
  5129. "keywords": [
  5130. "grapheme",
  5131. "i18n",
  5132. "string",
  5133. "unicode",
  5134. "utf-8",
  5135. "utf8"
  5136. ],
  5137. "time": "2020-07-08T08:27:49+00:00"
  5138. },
  5139. {
  5140. "name": "symfony/swiftmailer-bundle",
  5141. "version": "v3.4.0",
  5142. "source": {
  5143. "type": "git",
  5144. "url": "https://github.com/symfony/swiftmailer-bundle.git",
  5145. "reference": "553d2474288349faed873da8ab7c1551a00d26ae"
  5146. },
  5147. "dist": {
  5148. "type": "zip",
  5149. "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/553d2474288349faed873da8ab7c1551a00d26ae",
  5150. "reference": "553d2474288349faed873da8ab7c1551a00d26ae",
  5151. "shasum": ""
  5152. },
  5153. "require": {
  5154. "php": ">=7.1",
  5155. "swiftmailer/swiftmailer": "^6.1.3",
  5156. "symfony/config": "^4.3.8|^5.0",
  5157. "symfony/dependency-injection": "^4.3.8|^5.0",
  5158. "symfony/http-kernel": "^4.3.8|^5.0"
  5159. },
  5160. "conflict": {
  5161. "twig/twig": "<1.41|<2.10"
  5162. },
  5163. "require-dev": {
  5164. "symfony/console": "^4.3.8|^5.0",
  5165. "symfony/framework-bundle": "^4.3.8|^5.0",
  5166. "symfony/phpunit-bridge": "^4.3.8|^5.0",
  5167. "symfony/yaml": "^4.3.8|^5.0"
  5168. },
  5169. "suggest": {
  5170. "psr/log": "Allows logging"
  5171. },
  5172. "type": "symfony-bundle",
  5173. "extra": {
  5174. "branch-alias": {
  5175. "dev-master": "3.4-dev"
  5176. }
  5177. },
  5178. "autoload": {
  5179. "psr-4": {
  5180. "Symfony\\Bundle\\SwiftmailerBundle\\": ""
  5181. },
  5182. "exclude-from-classmap": [
  5183. "/Tests/"
  5184. ]
  5185. },
  5186. "notification-url": "https://packagist.org/downloads/",
  5187. "license": [
  5188. "MIT"
  5189. ],
  5190. "authors": [
  5191. {
  5192. "name": "Fabien Potencier",
  5193. "email": "fabien@symfony.com"
  5194. },
  5195. {
  5196. "name": "Symfony Community",
  5197. "homepage": "http://symfony.com/contributors"
  5198. }
  5199. ],
  5200. "description": "Symfony SwiftmailerBundle",
  5201. "homepage": "http://symfony.com",
  5202. "time": "2019-11-14T16:18:31+00:00"
  5203. },
  5204. {
  5205. "name": "symfony/translation",
  5206. "version": "v5.1.3",
  5207. "source": {
  5208. "type": "git",
  5209. "url": "https://github.com/symfony/translation.git",
  5210. "reference": "4b9bf719f0fa5b05253c37fc7b335337ec7ec427"
  5211. },
  5212. "dist": {
  5213. "type": "zip",
  5214. "url": "https://api.github.com/repos/symfony/translation/zipball/4b9bf719f0fa5b05253c37fc7b335337ec7ec427",
  5215. "reference": "4b9bf719f0fa5b05253c37fc7b335337ec7ec427",
  5216. "shasum": ""
  5217. },
  5218. "require": {
  5219. "php": ">=7.2.5",
  5220. "symfony/polyfill-mbstring": "~1.0",
  5221. "symfony/polyfill-php80": "^1.15",
  5222. "symfony/translation-contracts": "^2"
  5223. },
  5224. "conflict": {
  5225. "symfony/config": "<4.4",
  5226. "symfony/dependency-injection": "<5.0",
  5227. "symfony/http-kernel": "<5.0",
  5228. "symfony/twig-bundle": "<5.0",
  5229. "symfony/yaml": "<4.4"
  5230. },
  5231. "provide": {
  5232. "symfony/translation-implementation": "2.0"
  5233. },
  5234. "require-dev": {
  5235. "psr/log": "~1.0",
  5236. "symfony/config": "^4.4|^5.0",
  5237. "symfony/console": "^4.4|^5.0",
  5238. "symfony/dependency-injection": "^5.0",
  5239. "symfony/finder": "^4.4|^5.0",
  5240. "symfony/http-kernel": "^5.0",
  5241. "symfony/intl": "^4.4|^5.0",
  5242. "symfony/service-contracts": "^1.1.2|^2",
  5243. "symfony/yaml": "^4.4|^5.0"
  5244. },
  5245. "suggest": {
  5246. "psr/log-implementation": "To use logging capability in translator",
  5247. "symfony/config": "",
  5248. "symfony/yaml": ""
  5249. },
  5250. "type": "library",
  5251. "extra": {
  5252. "branch-alias": {
  5253. "dev-master": "5.1-dev"
  5254. }
  5255. },
  5256. "autoload": {
  5257. "psr-4": {
  5258. "Symfony\\Component\\Translation\\": ""
  5259. },
  5260. "exclude-from-classmap": [
  5261. "/Tests/"
  5262. ]
  5263. },
  5264. "notification-url": "https://packagist.org/downloads/",
  5265. "license": [
  5266. "MIT"
  5267. ],
  5268. "authors": [
  5269. {
  5270. "name": "Fabien Potencier",
  5271. "email": "fabien@symfony.com"
  5272. },
  5273. {
  5274. "name": "Symfony Community",
  5275. "homepage": "https://symfony.com/contributors"
  5276. }
  5277. ],
  5278. "description": "Symfony Translation Component",
  5279. "homepage": "https://symfony.com",
  5280. "time": "2020-06-30T17:42:22+00:00"
  5281. },
  5282. {
  5283. "name": "symfony/translation-contracts",
  5284. "version": "v2.1.3",
  5285. "source": {
  5286. "type": "git",
  5287. "url": "https://github.com/symfony/translation-contracts.git",
  5288. "reference": "616a9773c853097607cf9dd6577d5b143ffdcd63"
  5289. },
  5290. "dist": {
  5291. "type": "zip",
  5292. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/616a9773c853097607cf9dd6577d5b143ffdcd63",
  5293. "reference": "616a9773c853097607cf9dd6577d5b143ffdcd63",
  5294. "shasum": ""
  5295. },
  5296. "require": {
  5297. "php": ">=7.2.5"
  5298. },
  5299. "suggest": {
  5300. "symfony/translation-implementation": ""
  5301. },
  5302. "type": "library",
  5303. "extra": {
  5304. "branch-alias": {
  5305. "dev-master": "2.1-dev"
  5306. },
  5307. "thanks": {
  5308. "name": "symfony/contracts",
  5309. "url": "https://github.com/symfony/contracts"
  5310. }
  5311. },
  5312. "autoload": {
  5313. "psr-4": {
  5314. "Symfony\\Contracts\\Translation\\": ""
  5315. }
  5316. },
  5317. "notification-url": "https://packagist.org/downloads/",
  5318. "license": [
  5319. "MIT"
  5320. ],
  5321. "authors": [
  5322. {
  5323. "name": "Nicolas Grekas",
  5324. "email": "p@tchwork.com"
  5325. },
  5326. {
  5327. "name": "Symfony Community",
  5328. "homepage": "https://symfony.com/contributors"
  5329. }
  5330. ],
  5331. "description": "Generic abstractions related to translation",
  5332. "homepage": "https://symfony.com",
  5333. "keywords": [
  5334. "abstractions",
  5335. "contracts",
  5336. "decoupling",
  5337. "interfaces",
  5338. "interoperability",
  5339. "standards"
  5340. ],
  5341. "time": "2020-07-06T13:23:11+00:00"
  5342. },
  5343. {
  5344. "name": "symfony/twig-bridge",
  5345. "version": "v5.1.3",
  5346. "source": {
  5347. "type": "git",
  5348. "url": "https://github.com/symfony/twig-bridge.git",
  5349. "reference": "44bba5d7e5cb8a3ddeb640ae00938cc768c55797"
  5350. },
  5351. "dist": {
  5352. "type": "zip",
  5353. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/44bba5d7e5cb8a3ddeb640ae00938cc768c55797",
  5354. "reference": "44bba5d7e5cb8a3ddeb640ae00938cc768c55797",
  5355. "shasum": ""
  5356. },
  5357. "require": {
  5358. "php": ">=7.2.5",
  5359. "symfony/polyfill-php80": "^1.15",
  5360. "symfony/translation-contracts": "^1.1|^2",
  5361. "twig/twig": "^2.10|^3.0"
  5362. },
  5363. "conflict": {
  5364. "symfony/console": "<4.4",
  5365. "symfony/form": "<5.1",
  5366. "symfony/http-foundation": "<4.4",
  5367. "symfony/http-kernel": "<4.4",
  5368. "symfony/translation": "<5.0",
  5369. "symfony/workflow": "<4.4"
  5370. },
  5371. "require-dev": {
  5372. "egulias/email-validator": "^2.1.10",
  5373. "symfony/asset": "^4.4|^5.0",
  5374. "symfony/console": "^4.4|^5.0",
  5375. "symfony/dependency-injection": "^4.4|^5.0",
  5376. "symfony/expression-language": "^4.4|^5.0",
  5377. "symfony/finder": "^4.4|^5.0",
  5378. "symfony/form": "^5.1",
  5379. "symfony/http-foundation": "^4.4|^5.0",
  5380. "symfony/http-kernel": "^4.4|^5.0",
  5381. "symfony/mime": "^4.4|^5.0",
  5382. "symfony/polyfill-intl-icu": "~1.0",
  5383. "symfony/routing": "^4.4|^5.0",
  5384. "symfony/security-acl": "^2.8|^3.0",
  5385. "symfony/security-core": "^4.4|^5.0",
  5386. "symfony/security-csrf": "^4.4|^5.0",
  5387. "symfony/security-http": "^4.4|^5.0",
  5388. "symfony/stopwatch": "^4.4|^5.0",
  5389. "symfony/translation": "^5.0",
  5390. "symfony/web-link": "^4.4|^5.0",
  5391. "symfony/workflow": "^4.4|^5.0",
  5392. "symfony/yaml": "^4.4|^5.0",
  5393. "twig/cssinliner-extra": "^2.12",
  5394. "twig/inky-extra": "^2.12",
  5395. "twig/markdown-extra": "^2.12"
  5396. },
  5397. "suggest": {
  5398. "symfony/asset": "For using the AssetExtension",
  5399. "symfony/expression-language": "For using the ExpressionExtension",
  5400. "symfony/finder": "",
  5401. "symfony/form": "For using the FormExtension",
  5402. "symfony/http-kernel": "For using the HttpKernelExtension",
  5403. "symfony/routing": "For using the RoutingExtension",
  5404. "symfony/security-core": "For using the SecurityExtension",
  5405. "symfony/security-csrf": "For using the CsrfExtension",
  5406. "symfony/security-http": "For using the LogoutUrlExtension",
  5407. "symfony/stopwatch": "For using the StopwatchExtension",
  5408. "symfony/translation": "For using the TranslationExtension",
  5409. "symfony/var-dumper": "For using the DumpExtension",
  5410. "symfony/web-link": "For using the WebLinkExtension",
  5411. "symfony/yaml": "For using the YamlExtension"
  5412. },
  5413. "type": "symfony-bridge",
  5414. "extra": {
  5415. "branch-alias": {
  5416. "dev-master": "5.1-dev"
  5417. }
  5418. },
  5419. "autoload": {
  5420. "psr-4": {
  5421. "Symfony\\Bridge\\Twig\\": ""
  5422. },
  5423. "exclude-from-classmap": [
  5424. "/Tests/"
  5425. ]
  5426. },
  5427. "notification-url": "https://packagist.org/downloads/",
  5428. "license": [
  5429. "MIT"
  5430. ],
  5431. "authors": [
  5432. {
  5433. "name": "Fabien Potencier",
  5434. "email": "fabien@symfony.com"
  5435. },
  5436. {
  5437. "name": "Symfony Community",
  5438. "homepage": "https://symfony.com/contributors"
  5439. }
  5440. ],
  5441. "description": "Symfony Twig Bridge",
  5442. "homepage": "https://symfony.com",
  5443. "time": "2020-06-30T17:59:51+00:00"
  5444. },
  5445. {
  5446. "name": "symfony/twig-bundle",
  5447. "version": "v5.1.3",
  5448. "source": {
  5449. "type": "git",
  5450. "url": "https://github.com/symfony/twig-bundle.git",
  5451. "reference": "8898ef8aea8fa48638e15ce00c7c6318ce570ce1"
  5452. },
  5453. "dist": {
  5454. "type": "zip",
  5455. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/8898ef8aea8fa48638e15ce00c7c6318ce570ce1",
  5456. "reference": "8898ef8aea8fa48638e15ce00c7c6318ce570ce1",
  5457. "shasum": ""
  5458. },
  5459. "require": {
  5460. "php": ">=7.2.5",
  5461. "symfony/config": "^4.4|^5.0",
  5462. "symfony/http-foundation": "^4.4|^5.0",
  5463. "symfony/http-kernel": "^5.0",
  5464. "symfony/polyfill-ctype": "~1.8",
  5465. "symfony/twig-bridge": "^5.0",
  5466. "twig/twig": "^2.10|^3.0"
  5467. },
  5468. "conflict": {
  5469. "symfony/dependency-injection": "<4.4",
  5470. "symfony/framework-bundle": "<5.0",
  5471. "symfony/translation": "<5.0"
  5472. },
  5473. "require-dev": {
  5474. "doctrine/annotations": "~1.7",
  5475. "doctrine/cache": "~1.0",
  5476. "symfony/asset": "^4.4|^5.0",
  5477. "symfony/dependency-injection": "^4.4|^5.0",
  5478. "symfony/expression-language": "^4.4|^5.0",
  5479. "symfony/finder": "^4.4|^5.0",
  5480. "symfony/form": "^4.4|^5.0",
  5481. "symfony/framework-bundle": "^5.0",
  5482. "symfony/routing": "^4.4|^5.0",
  5483. "symfony/stopwatch": "^4.4|^5.0",
  5484. "symfony/translation": "^5.0",
  5485. "symfony/web-link": "^4.4|^5.0",
  5486. "symfony/yaml": "^4.4|^5.0"
  5487. },
  5488. "type": "symfony-bundle",
  5489. "extra": {
  5490. "branch-alias": {
  5491. "dev-master": "5.1-dev"
  5492. }
  5493. },
  5494. "autoload": {
  5495. "psr-4": {
  5496. "Symfony\\Bundle\\TwigBundle\\": ""
  5497. },
  5498. "exclude-from-classmap": [
  5499. "/Tests/"
  5500. ]
  5501. },
  5502. "notification-url": "https://packagist.org/downloads/",
  5503. "license": [
  5504. "MIT"
  5505. ],
  5506. "authors": [
  5507. {
  5508. "name": "Fabien Potencier",
  5509. "email": "fabien@symfony.com"
  5510. },
  5511. {
  5512. "name": "Symfony Community",
  5513. "homepage": "https://symfony.com/contributors"
  5514. }
  5515. ],
  5516. "description": "Symfony TwigBundle",
  5517. "homepage": "https://symfony.com",
  5518. "time": "2020-05-20T17:43:50+00:00"
  5519. },
  5520. {
  5521. "name": "symfony/validator",
  5522. "version": "v5.1.3",
  5523. "source": {
  5524. "type": "git",
  5525. "url": "https://github.com/symfony/validator.git",
  5526. "reference": "03aeabbff76771ef467a4d9a0574c427bb81d932"
  5527. },
  5528. "dist": {
  5529. "type": "zip",
  5530. "url": "https://api.github.com/repos/symfony/validator/zipball/03aeabbff76771ef467a4d9a0574c427bb81d932",
  5531. "reference": "03aeabbff76771ef467a4d9a0574c427bb81d932",
  5532. "shasum": ""
  5533. },
  5534. "require": {
  5535. "php": ">=7.2.5",
  5536. "symfony/polyfill-ctype": "~1.8",
  5537. "symfony/polyfill-mbstring": "~1.0",
  5538. "symfony/polyfill-php80": "^1.15",
  5539. "symfony/translation-contracts": "^1.1|^2"
  5540. },
  5541. "conflict": {
  5542. "doctrine/lexer": "<1.0.2",
  5543. "phpunit/phpunit": "<5.4.3",
  5544. "symfony/dependency-injection": "<4.4",
  5545. "symfony/expression-language": "<5.1",
  5546. "symfony/http-kernel": "<4.4",
  5547. "symfony/intl": "<4.4",
  5548. "symfony/translation": "<4.4",
  5549. "symfony/yaml": "<4.4"
  5550. },
  5551. "require-dev": {
  5552. "doctrine/annotations": "~1.7",
  5553. "doctrine/cache": "~1.0",
  5554. "egulias/email-validator": "^2.1.10",
  5555. "symfony/cache": "^4.4|^5.0",
  5556. "symfony/config": "^4.4|^5.0",
  5557. "symfony/dependency-injection": "^4.4|^5.0",
  5558. "symfony/expression-language": "^5.1",
  5559. "symfony/http-client": "^4.4|^5.0",
  5560. "symfony/http-foundation": "^4.4|^5.0",
  5561. "symfony/http-kernel": "^4.4|^5.0",
  5562. "symfony/intl": "^4.4|^5.0",
  5563. "symfony/mime": "^4.4|^5.0",
  5564. "symfony/property-access": "^4.4|^5.0",
  5565. "symfony/property-info": "^4.4|^5.0",
  5566. "symfony/translation": "^4.4|^5.0",
  5567. "symfony/yaml": "^4.4|^5.0"
  5568. },
  5569. "suggest": {
  5570. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  5571. "doctrine/cache": "For using the default cached annotation reader.",
  5572. "egulias/email-validator": "Strict (RFC compliant) email validation",
  5573. "psr/cache-implementation": "For using the mapping cache.",
  5574. "symfony/config": "",
  5575. "symfony/expression-language": "For using the Expression validator and the ExpressionLanguageSyntax constraints",
  5576. "symfony/http-foundation": "",
  5577. "symfony/intl": "",
  5578. "symfony/property-access": "For accessing properties within comparison constraints",
  5579. "symfony/property-info": "To automatically add NotNull and Type constraints",
  5580. "symfony/translation": "For translating validation errors.",
  5581. "symfony/yaml": ""
  5582. },
  5583. "type": "library",
  5584. "extra": {
  5585. "branch-alias": {
  5586. "dev-master": "5.1-dev"
  5587. }
  5588. },
  5589. "autoload": {
  5590. "psr-4": {
  5591. "Symfony\\Component\\Validator\\": ""
  5592. },
  5593. "exclude-from-classmap": [
  5594. "/Tests/"
  5595. ]
  5596. },
  5597. "notification-url": "https://packagist.org/downloads/",
  5598. "license": [
  5599. "MIT"
  5600. ],
  5601. "authors": [
  5602. {
  5603. "name": "Fabien Potencier",
  5604. "email": "fabien@symfony.com"
  5605. },
  5606. {
  5607. "name": "Symfony Community",
  5608. "homepage": "https://symfony.com/contributors"
  5609. }
  5610. ],
  5611. "description": "Symfony Validator Component",
  5612. "homepage": "https://symfony.com",
  5613. "time": "2020-07-23T06:35:25+00:00"
  5614. },
  5615. {
  5616. "name": "symfony/var-dumper",
  5617. "version": "v5.1.3",
  5618. "source": {
  5619. "type": "git",
  5620. "url": "https://github.com/symfony/var-dumper.git",
  5621. "reference": "2ebe1c7bb52052624d6dc1250f4abe525655d75a"
  5622. },
  5623. "dist": {
  5624. "type": "zip",
  5625. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2ebe1c7bb52052624d6dc1250f4abe525655d75a",
  5626. "reference": "2ebe1c7bb52052624d6dc1250f4abe525655d75a",
  5627. "shasum": ""
  5628. },
  5629. "require": {
  5630. "php": ">=7.2.5",
  5631. "symfony/polyfill-mbstring": "~1.0",
  5632. "symfony/polyfill-php80": "^1.15"
  5633. },
  5634. "conflict": {
  5635. "phpunit/phpunit": "<5.4.3",
  5636. "symfony/console": "<4.4"
  5637. },
  5638. "require-dev": {
  5639. "ext-iconv": "*",
  5640. "symfony/console": "^4.4|^5.0",
  5641. "symfony/process": "^4.4|^5.0",
  5642. "twig/twig": "^2.4|^3.0"
  5643. },
  5644. "suggest": {
  5645. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5646. "ext-intl": "To show region name in time zone dump",
  5647. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5648. },
  5649. "bin": [
  5650. "Resources/bin/var-dump-server"
  5651. ],
  5652. "type": "library",
  5653. "extra": {
  5654. "branch-alias": {
  5655. "dev-master": "5.1-dev"
  5656. }
  5657. },
  5658. "autoload": {
  5659. "files": [
  5660. "Resources/functions/dump.php"
  5661. ],
  5662. "psr-4": {
  5663. "Symfony\\Component\\VarDumper\\": ""
  5664. },
  5665. "exclude-from-classmap": [
  5666. "/Tests/"
  5667. ]
  5668. },
  5669. "notification-url": "https://packagist.org/downloads/",
  5670. "license": [
  5671. "MIT"
  5672. ],
  5673. "authors": [
  5674. {
  5675. "name": "Nicolas Grekas",
  5676. "email": "p@tchwork.com"
  5677. },
  5678. {
  5679. "name": "Symfony Community",
  5680. "homepage": "https://symfony.com/contributors"
  5681. }
  5682. ],
  5683. "description": "Symfony mechanism for exploring and dumping PHP variables",
  5684. "homepage": "https://symfony.com",
  5685. "keywords": [
  5686. "debug",
  5687. "dump"
  5688. ],
  5689. "time": "2020-06-24T13:36:18+00:00"
  5690. },
  5691. {
  5692. "name": "symfony/var-exporter",
  5693. "version": "v5.1.3",
  5694. "source": {
  5695. "type": "git",
  5696. "url": "https://github.com/symfony/var-exporter.git",
  5697. "reference": "eabaabfe1485ca955c5b53307eade15ccda57a15"
  5698. },
  5699. "dist": {
  5700. "type": "zip",
  5701. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/eabaabfe1485ca955c5b53307eade15ccda57a15",
  5702. "reference": "eabaabfe1485ca955c5b53307eade15ccda57a15",
  5703. "shasum": ""
  5704. },
  5705. "require": {
  5706. "php": ">=7.2.5",
  5707. "symfony/polyfill-php80": "^1.15"
  5708. },
  5709. "require-dev": {
  5710. "symfony/var-dumper": "^4.4.9|^5.0.9"
  5711. },
  5712. "type": "library",
  5713. "extra": {
  5714. "branch-alias": {
  5715. "dev-master": "5.1-dev"
  5716. }
  5717. },
  5718. "autoload": {
  5719. "psr-4": {
  5720. "Symfony\\Component\\VarExporter\\": ""
  5721. },
  5722. "exclude-from-classmap": [
  5723. "/Tests/"
  5724. ]
  5725. },
  5726. "notification-url": "https://packagist.org/downloads/",
  5727. "license": [
  5728. "MIT"
  5729. ],
  5730. "authors": [
  5731. {
  5732. "name": "Nicolas Grekas",
  5733. "email": "p@tchwork.com"
  5734. },
  5735. {
  5736. "name": "Symfony Community",
  5737. "homepage": "https://symfony.com/contributors"
  5738. }
  5739. ],
  5740. "description": "A blend of var_export() + serialize() to turn any serializable data structure to plain PHP code",
  5741. "homepage": "https://symfony.com",
  5742. "keywords": [
  5743. "clone",
  5744. "construct",
  5745. "export",
  5746. "hydrate",
  5747. "instantiate",
  5748. "serialize"
  5749. ],
  5750. "time": "2020-06-07T15:42:22+00:00"
  5751. },
  5752. {
  5753. "name": "symfony/web-link",
  5754. "version": "v5.1.3",
  5755. "source": {
  5756. "type": "git",
  5757. "url": "https://github.com/symfony/web-link.git",
  5758. "reference": "ba2554887e34e693e3888f23f83c72d5ce04bfb2"
  5759. },
  5760. "dist": {
  5761. "type": "zip",
  5762. "url": "https://api.github.com/repos/symfony/web-link/zipball/ba2554887e34e693e3888f23f83c72d5ce04bfb2",
  5763. "reference": "ba2554887e34e693e3888f23f83c72d5ce04bfb2",
  5764. "shasum": ""
  5765. },
  5766. "require": {
  5767. "php": ">=7.2.5",
  5768. "psr/link": "^1.0"
  5769. },
  5770. "conflict": {
  5771. "symfony/http-kernel": "<4.4"
  5772. },
  5773. "provide": {
  5774. "psr/link-implementation": "1.0"
  5775. },
  5776. "require-dev": {
  5777. "symfony/http-foundation": "^4.4|^5.0",
  5778. "symfony/http-kernel": "^4.4|^5.0"
  5779. },
  5780. "suggest": {
  5781. "symfony/http-kernel": ""
  5782. },
  5783. "type": "library",
  5784. "extra": {
  5785. "branch-alias": {
  5786. "dev-master": "5.1-dev"
  5787. }
  5788. },
  5789. "autoload": {
  5790. "psr-4": {
  5791. "Symfony\\Component\\WebLink\\": ""
  5792. },
  5793. "exclude-from-classmap": [
  5794. "/Tests/"
  5795. ]
  5796. },
  5797. "notification-url": "https://packagist.org/downloads/",
  5798. "license": [
  5799. "MIT"
  5800. ],
  5801. "authors": [
  5802. {
  5803. "name": "Kévin Dunglas",
  5804. "email": "dunglas@gmail.com"
  5805. },
  5806. {
  5807. "name": "Symfony Community",
  5808. "homepage": "https://symfony.com/contributors"
  5809. }
  5810. ],
  5811. "description": "Symfony WebLink Component",
  5812. "homepage": "https://symfony.com",
  5813. "keywords": [
  5814. "dns-prefetch",
  5815. "http",
  5816. "http2",
  5817. "link",
  5818. "performance",
  5819. "prefetch",
  5820. "preload",
  5821. "prerender",
  5822. "psr13",
  5823. "push"
  5824. ],
  5825. "time": "2020-05-28T08:20:44+00:00"
  5826. },
  5827. {
  5828. "name": "symfony/webpack-encore-bundle",
  5829. "version": "v1.7.3",
  5830. "source": {
  5831. "type": "git",
  5832. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  5833. "reference": "5c0f659eceae87271cce54bbdfb05ed8ec9007bd"
  5834. },
  5835. "dist": {
  5836. "type": "zip",
  5837. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/5c0f659eceae87271cce54bbdfb05ed8ec9007bd",
  5838. "reference": "5c0f659eceae87271cce54bbdfb05ed8ec9007bd",
  5839. "shasum": ""
  5840. },
  5841. "require": {
  5842. "php": "^7.1.3",
  5843. "symfony/asset": "^3.4 || ^4.0 || ^5.0",
  5844. "symfony/config": "^3.4 || ^4.0 || ^5.0",
  5845. "symfony/dependency-injection": "^3.4 || ^4.0 || ^5.0",
  5846. "symfony/http-kernel": "^3.4 || ^4.0 || ^5.0",
  5847. "symfony/service-contracts": "^1.0 || ^2.0"
  5848. },
  5849. "require-dev": {
  5850. "symfony/framework-bundle": "^3.4 || ^4.0 || ^5.0",
  5851. "symfony/phpunit-bridge": "^4.3.5 || ^5.0",
  5852. "symfony/twig-bundle": "^3.4 || ^4.0 || ^5.0",
  5853. "symfony/web-link": "^3.4 || ^4.0 || ^5.0"
  5854. },
  5855. "type": "symfony-bundle",
  5856. "extra": {
  5857. "thanks": {
  5858. "name": "symfony/webpack-encore",
  5859. "url": "https://github.com/symfony/webpack-encore"
  5860. }
  5861. },
  5862. "autoload": {
  5863. "psr-4": {
  5864. "Symfony\\WebpackEncoreBundle\\": "src"
  5865. }
  5866. },
  5867. "notification-url": "https://packagist.org/downloads/",
  5868. "license": [
  5869. "MIT"
  5870. ],
  5871. "authors": [
  5872. {
  5873. "name": "Symfony Community",
  5874. "homepage": "https://symfony.com/contributors"
  5875. }
  5876. ],
  5877. "description": "Integration with your Symfony app & Webpack Encore!",
  5878. "time": "2020-01-31T15:31:59+00:00"
  5879. },
  5880. {
  5881. "name": "symfony/yaml",
  5882. "version": "v5.1.3",
  5883. "source": {
  5884. "type": "git",
  5885. "url": "https://github.com/symfony/yaml.git",
  5886. "reference": "ea342353a3ef4f453809acc4ebc55382231d4d23"
  5887. },
  5888. "dist": {
  5889. "type": "zip",
  5890. "url": "https://api.github.com/repos/symfony/yaml/zipball/ea342353a3ef4f453809acc4ebc55382231d4d23",
  5891. "reference": "ea342353a3ef4f453809acc4ebc55382231d4d23",
  5892. "shasum": ""
  5893. },
  5894. "require": {
  5895. "php": ">=7.2.5",
  5896. "symfony/deprecation-contracts": "^2.1",
  5897. "symfony/polyfill-ctype": "~1.8"
  5898. },
  5899. "conflict": {
  5900. "symfony/console": "<4.4"
  5901. },
  5902. "require-dev": {
  5903. "symfony/console": "^4.4|^5.0"
  5904. },
  5905. "suggest": {
  5906. "symfony/console": "For validating YAML files using the lint command"
  5907. },
  5908. "bin": [
  5909. "Resources/bin/yaml-lint"
  5910. ],
  5911. "type": "library",
  5912. "extra": {
  5913. "branch-alias": {
  5914. "dev-master": "5.1-dev"
  5915. }
  5916. },
  5917. "autoload": {
  5918. "psr-4": {
  5919. "Symfony\\Component\\Yaml\\": ""
  5920. },
  5921. "exclude-from-classmap": [
  5922. "/Tests/"
  5923. ]
  5924. },
  5925. "notification-url": "https://packagist.org/downloads/",
  5926. "license": [
  5927. "MIT"
  5928. ],
  5929. "authors": [
  5930. {
  5931. "name": "Fabien Potencier",
  5932. "email": "fabien@symfony.com"
  5933. },
  5934. {
  5935. "name": "Symfony Community",
  5936. "homepage": "https://symfony.com/contributors"
  5937. }
  5938. ],
  5939. "description": "Symfony Yaml Component",
  5940. "homepage": "https://symfony.com",
  5941. "time": "2020-05-20T17:43:50+00:00"
  5942. },
  5943. {
  5944. "name": "twig/twig",
  5945. "version": "v3.0.4",
  5946. "source": {
  5947. "type": "git",
  5948. "url": "https://github.com/twigphp/Twig.git",
  5949. "reference": "582bdbdc173027ebfba3c93dc750a40b8f9ebc02"
  5950. },
  5951. "dist": {
  5952. "type": "zip",
  5953. "url": "https://api.github.com/repos/twigphp/Twig/zipball/582bdbdc173027ebfba3c93dc750a40b8f9ebc02",
  5954. "reference": "582bdbdc173027ebfba3c93dc750a40b8f9ebc02",
  5955. "shasum": ""
  5956. },
  5957. "require": {
  5958. "php": ">=7.2.5",
  5959. "symfony/polyfill-ctype": "^1.8",
  5960. "symfony/polyfill-mbstring": "^1.3"
  5961. },
  5962. "require-dev": {
  5963. "psr/container": "^1.0",
  5964. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  5965. },
  5966. "type": "library",
  5967. "extra": {
  5968. "branch-alias": {
  5969. "dev-master": "3.0-dev"
  5970. }
  5971. },
  5972. "autoload": {
  5973. "psr-4": {
  5974. "Twig\\": "src/"
  5975. }
  5976. },
  5977. "notification-url": "https://packagist.org/downloads/",
  5978. "license": [
  5979. "BSD-3-Clause"
  5980. ],
  5981. "authors": [
  5982. {
  5983. "name": "Fabien Potencier",
  5984. "email": "fabien@symfony.com",
  5985. "homepage": "http://fabien.potencier.org",
  5986. "role": "Lead Developer"
  5987. },
  5988. {
  5989. "name": "Twig Team",
  5990. "role": "Contributors"
  5991. },
  5992. {
  5993. "name": "Armin Ronacher",
  5994. "email": "armin.ronacher@active-4.com",
  5995. "role": "Project Founder"
  5996. }
  5997. ],
  5998. "description": "Twig, the flexible, fast, and secure template language for PHP",
  5999. "homepage": "https://twig.symfony.com",
  6000. "keywords": [
  6001. "templating"
  6002. ],
  6003. "time": "2020-07-05T13:18:14+00:00"
  6004. },
  6005. {
  6006. "name": "webmozart/assert",
  6007. "version": "1.9.1",
  6008. "source": {
  6009. "type": "git",
  6010. "url": "https://github.com/webmozart/assert.git",
  6011. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  6012. },
  6013. "dist": {
  6014. "type": "zip",
  6015. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  6016. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  6017. "shasum": ""
  6018. },
  6019. "require": {
  6020. "php": "^5.3.3 || ^7.0 || ^8.0",
  6021. "symfony/polyfill-ctype": "^1.8"
  6022. },
  6023. "conflict": {
  6024. "phpstan/phpstan": "<0.12.20",
  6025. "vimeo/psalm": "<3.9.1"
  6026. },
  6027. "require-dev": {
  6028. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  6029. },
  6030. "type": "library",
  6031. "autoload": {
  6032. "psr-4": {
  6033. "Webmozart\\Assert\\": "src/"
  6034. }
  6035. },
  6036. "notification-url": "https://packagist.org/downloads/",
  6037. "license": [
  6038. "MIT"
  6039. ],
  6040. "authors": [
  6041. {
  6042. "name": "Bernhard Schussek",
  6043. "email": "bschussek@gmail.com"
  6044. }
  6045. ],
  6046. "description": "Assertions to validate method input/output with nice error messages.",
  6047. "keywords": [
  6048. "assert",
  6049. "check",
  6050. "validate"
  6051. ],
  6052. "time": "2020-07-08T17:02:28+00:00"
  6053. },
  6054. {
  6055. "name": "zendframework/zend-code",
  6056. "version": "3.4.1",
  6057. "source": {
  6058. "type": "git",
  6059. "url": "https://github.com/zendframework/zend-code.git",
  6060. "reference": "268040548f92c2bfcba164421c1add2ba43abaaa"
  6061. },
  6062. "dist": {
  6063. "type": "zip",
  6064. "url": "https://api.github.com/repos/zendframework/zend-code/zipball/268040548f92c2bfcba164421c1add2ba43abaaa",
  6065. "reference": "268040548f92c2bfcba164421c1add2ba43abaaa",
  6066. "shasum": ""
  6067. },
  6068. "require": {
  6069. "php": "^7.1",
  6070. "zendframework/zend-eventmanager": "^2.6 || ^3.0"
  6071. },
  6072. "conflict": {
  6073. "phpspec/prophecy": "<1.9.0"
  6074. },
  6075. "require-dev": {
  6076. "doctrine/annotations": "^1.7",
  6077. "ext-phar": "*",
  6078. "phpunit/phpunit": "^7.5.16 || ^8.4",
  6079. "zendframework/zend-coding-standard": "^1.0",
  6080. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  6081. },
  6082. "suggest": {
  6083. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  6084. "zendframework/zend-stdlib": "Zend\\Stdlib component"
  6085. },
  6086. "type": "library",
  6087. "extra": {
  6088. "branch-alias": {
  6089. "dev-master": "3.4.x-dev",
  6090. "dev-develop": "3.5.x-dev",
  6091. "dev-dev-4.0": "4.0.x-dev"
  6092. }
  6093. },
  6094. "autoload": {
  6095. "psr-4": {
  6096. "Zend\\Code\\": "src/"
  6097. }
  6098. },
  6099. "notification-url": "https://packagist.org/downloads/",
  6100. "license": [
  6101. "BSD-3-Clause"
  6102. ],
  6103. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  6104. "keywords": [
  6105. "ZendFramework",
  6106. "code",
  6107. "zf"
  6108. ],
  6109. "abandoned": "laminas/laminas-code",
  6110. "time": "2019-12-10T19:21:15+00:00"
  6111. },
  6112. {
  6113. "name": "zendframework/zend-eventmanager",
  6114. "version": "3.2.1",
  6115. "source": {
  6116. "type": "git",
  6117. "url": "https://github.com/zendframework/zend-eventmanager.git",
  6118. "reference": "a5e2583a211f73604691586b8406ff7296a946dd"
  6119. },
  6120. "dist": {
  6121. "type": "zip",
  6122. "url": "https://api.github.com/repos/zendframework/zend-eventmanager/zipball/a5e2583a211f73604691586b8406ff7296a946dd",
  6123. "reference": "a5e2583a211f73604691586b8406ff7296a946dd",
  6124. "shasum": ""
  6125. },
  6126. "require": {
  6127. "php": "^5.6 || ^7.0"
  6128. },
  6129. "require-dev": {
  6130. "athletic/athletic": "^0.1",
  6131. "container-interop/container-interop": "^1.1.0",
  6132. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  6133. "zendframework/zend-coding-standard": "~1.0.0",
  6134. "zendframework/zend-stdlib": "^2.7.3 || ^3.0"
  6135. },
  6136. "suggest": {
  6137. "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature",
  6138. "zendframework/zend-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
  6139. },
  6140. "type": "library",
  6141. "extra": {
  6142. "branch-alias": {
  6143. "dev-master": "3.2-dev",
  6144. "dev-develop": "3.3-dev"
  6145. }
  6146. },
  6147. "autoload": {
  6148. "psr-4": {
  6149. "Zend\\EventManager\\": "src/"
  6150. }
  6151. },
  6152. "notification-url": "https://packagist.org/downloads/",
  6153. "license": [
  6154. "BSD-3-Clause"
  6155. ],
  6156. "description": "Trigger and listen to events within a PHP application",
  6157. "homepage": "https://github.com/zendframework/zend-eventmanager",
  6158. "keywords": [
  6159. "event",
  6160. "eventmanager",
  6161. "events",
  6162. "zf2"
  6163. ],
  6164. "abandoned": "laminas/laminas-eventmanager",
  6165. "time": "2018-04-25T15:33:34+00:00"
  6166. }
  6167. ],
  6168. "packages-dev": [
  6169. {
  6170. "name": "nikic/php-parser",
  6171. "version": "v4.7.0",
  6172. "source": {
  6173. "type": "git",
  6174. "url": "https://github.com/nikic/PHP-Parser.git",
  6175. "reference": "21dce06dfbf0365c6a7cc8fdbdc995926c6a9300"
  6176. },
  6177. "dist": {
  6178. "type": "zip",
  6179. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/21dce06dfbf0365c6a7cc8fdbdc995926c6a9300",
  6180. "reference": "21dce06dfbf0365c6a7cc8fdbdc995926c6a9300",
  6181. "shasum": ""
  6182. },
  6183. "require": {
  6184. "ext-tokenizer": "*",
  6185. "php": ">=7.0"
  6186. },
  6187. "require-dev": {
  6188. "ircmaxell/php-yacc": "0.0.5",
  6189. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  6190. },
  6191. "bin": [
  6192. "bin/php-parse"
  6193. ],
  6194. "type": "library",
  6195. "extra": {
  6196. "branch-alias": {
  6197. "dev-master": "4.7-dev"
  6198. }
  6199. },
  6200. "autoload": {
  6201. "psr-4": {
  6202. "PhpParser\\": "lib/PhpParser"
  6203. }
  6204. },
  6205. "notification-url": "https://packagist.org/downloads/",
  6206. "license": [
  6207. "BSD-3-Clause"
  6208. ],
  6209. "authors": [
  6210. {
  6211. "name": "Nikita Popov"
  6212. }
  6213. ],
  6214. "description": "A PHP parser written in PHP",
  6215. "keywords": [
  6216. "parser",
  6217. "php"
  6218. ],
  6219. "time": "2020-07-25T13:18:53+00:00"
  6220. },
  6221. {
  6222. "name": "symfony/browser-kit",
  6223. "version": "v5.1.3",
  6224. "source": {
  6225. "type": "git",
  6226. "url": "https://github.com/symfony/browser-kit.git",
  6227. "reference": "b9545e08790be2d3d7d92306e339bbcd79f461e4"
  6228. },
  6229. "dist": {
  6230. "type": "zip",
  6231. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/b9545e08790be2d3d7d92306e339bbcd79f461e4",
  6232. "reference": "b9545e08790be2d3d7d92306e339bbcd79f461e4",
  6233. "shasum": ""
  6234. },
  6235. "require": {
  6236. "php": ">=7.2.5",
  6237. "symfony/dom-crawler": "^4.4|^5.0"
  6238. },
  6239. "require-dev": {
  6240. "symfony/css-selector": "^4.4|^5.0",
  6241. "symfony/http-client": "^4.4|^5.0",
  6242. "symfony/mime": "^4.4|^5.0",
  6243. "symfony/process": "^4.4|^5.0"
  6244. },
  6245. "suggest": {
  6246. "symfony/process": ""
  6247. },
  6248. "type": "library",
  6249. "extra": {
  6250. "branch-alias": {
  6251. "dev-master": "5.1-dev"
  6252. }
  6253. },
  6254. "autoload": {
  6255. "psr-4": {
  6256. "Symfony\\Component\\BrowserKit\\": ""
  6257. },
  6258. "exclude-from-classmap": [
  6259. "/Tests/"
  6260. ]
  6261. },
  6262. "notification-url": "https://packagist.org/downloads/",
  6263. "license": [
  6264. "MIT"
  6265. ],
  6266. "authors": [
  6267. {
  6268. "name": "Fabien Potencier",
  6269. "email": "fabien@symfony.com"
  6270. },
  6271. {
  6272. "name": "Symfony Community",
  6273. "homepage": "https://symfony.com/contributors"
  6274. }
  6275. ],
  6276. "description": "Symfony BrowserKit Component",
  6277. "homepage": "https://symfony.com",
  6278. "time": "2020-06-24T13:36:18+00:00"
  6279. },
  6280. {
  6281. "name": "symfony/css-selector",
  6282. "version": "v5.1.3",
  6283. "source": {
  6284. "type": "git",
  6285. "url": "https://github.com/symfony/css-selector.git",
  6286. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9"
  6287. },
  6288. "dist": {
  6289. "type": "zip",
  6290. "url": "https://api.github.com/repos/symfony/css-selector/zipball/e544e24472d4c97b2d11ade7caacd446727c6bf9",
  6291. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9",
  6292. "shasum": ""
  6293. },
  6294. "require": {
  6295. "php": ">=7.2.5"
  6296. },
  6297. "type": "library",
  6298. "extra": {
  6299. "branch-alias": {
  6300. "dev-master": "5.1-dev"
  6301. }
  6302. },
  6303. "autoload": {
  6304. "psr-4": {
  6305. "Symfony\\Component\\CssSelector\\": ""
  6306. },
  6307. "exclude-from-classmap": [
  6308. "/Tests/"
  6309. ]
  6310. },
  6311. "notification-url": "https://packagist.org/downloads/",
  6312. "license": [
  6313. "MIT"
  6314. ],
  6315. "authors": [
  6316. {
  6317. "name": "Fabien Potencier",
  6318. "email": "fabien@symfony.com"
  6319. },
  6320. {
  6321. "name": "Jean-François Simon",
  6322. "email": "jeanfrancois.simon@sensiolabs.com"
  6323. },
  6324. {
  6325. "name": "Symfony Community",
  6326. "homepage": "https://symfony.com/contributors"
  6327. }
  6328. ],
  6329. "description": "Symfony CssSelector Component",
  6330. "homepage": "https://symfony.com",
  6331. "time": "2020-05-20T17:43:50+00:00"
  6332. },
  6333. {
  6334. "name": "symfony/debug-bundle",
  6335. "version": "v5.1.3",
  6336. "source": {
  6337. "type": "git",
  6338. "url": "https://github.com/symfony/debug-bundle.git",
  6339. "reference": "3f4bcea52678eedf19260973217f5ae7b835edf5"
  6340. },
  6341. "dist": {
  6342. "type": "zip",
  6343. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/3f4bcea52678eedf19260973217f5ae7b835edf5",
  6344. "reference": "3f4bcea52678eedf19260973217f5ae7b835edf5",
  6345. "shasum": ""
  6346. },
  6347. "require": {
  6348. "ext-xml": "*",
  6349. "php": ">=7.2.5",
  6350. "symfony/http-kernel": "^4.4|^5.0",
  6351. "symfony/twig-bridge": "^4.4|^5.0",
  6352. "symfony/var-dumper": "^4.4|^5.0"
  6353. },
  6354. "conflict": {
  6355. "symfony/config": "<4.4",
  6356. "symfony/dependency-injection": "<4.4"
  6357. },
  6358. "require-dev": {
  6359. "symfony/config": "^4.4|^5.0",
  6360. "symfony/dependency-injection": "^4.4|^5.0",
  6361. "symfony/web-profiler-bundle": "^4.4|^5.0"
  6362. },
  6363. "suggest": {
  6364. "symfony/config": "For service container configuration",
  6365. "symfony/dependency-injection": "For using as a service from the container"
  6366. },
  6367. "type": "symfony-bundle",
  6368. "extra": {
  6369. "branch-alias": {
  6370. "dev-master": "5.1-dev"
  6371. }
  6372. },
  6373. "autoload": {
  6374. "psr-4": {
  6375. "Symfony\\Bundle\\DebugBundle\\": ""
  6376. },
  6377. "exclude-from-classmap": [
  6378. "/Tests/"
  6379. ]
  6380. },
  6381. "notification-url": "https://packagist.org/downloads/",
  6382. "license": [
  6383. "MIT"
  6384. ],
  6385. "authors": [
  6386. {
  6387. "name": "Fabien Potencier",
  6388. "email": "fabien@symfony.com"
  6389. },
  6390. {
  6391. "name": "Symfony Community",
  6392. "homepage": "https://symfony.com/contributors"
  6393. }
  6394. ],
  6395. "description": "Symfony DebugBundle",
  6396. "homepage": "https://symfony.com",
  6397. "time": "2020-05-20T17:43:50+00:00"
  6398. },
  6399. {
  6400. "name": "symfony/debug-pack",
  6401. "version": "v1.0.8",
  6402. "source": {
  6403. "type": "git",
  6404. "url": "https://github.com/symfony/debug-pack.git",
  6405. "reference": "7310a66f9f81c9f292ff9089f0b0062386cb83fb"
  6406. },
  6407. "dist": {
  6408. "type": "zip",
  6409. "url": "https://api.github.com/repos/symfony/debug-pack/zipball/7310a66f9f81c9f292ff9089f0b0062386cb83fb",
  6410. "reference": "7310a66f9f81c9f292ff9089f0b0062386cb83fb",
  6411. "shasum": ""
  6412. },
  6413. "require": {
  6414. "php": "^7.0",
  6415. "symfony/debug-bundle": "*",
  6416. "symfony/monolog-bundle": "^3.0",
  6417. "symfony/profiler-pack": "*",
  6418. "symfony/var-dumper": "*"
  6419. },
  6420. "type": "symfony-pack",
  6421. "notification-url": "https://packagist.org/downloads/",
  6422. "license": [
  6423. "MIT"
  6424. ],
  6425. "description": "A debug pack for Symfony projects",
  6426. "time": "2020-04-07T10:08:51+00:00"
  6427. },
  6428. {
  6429. "name": "symfony/dom-crawler",
  6430. "version": "v5.1.3",
  6431. "source": {
  6432. "type": "git",
  6433. "url": "https://github.com/symfony/dom-crawler.git",
  6434. "reference": "a96aecb36aaf081f1b012e1e62d71f1069ab3dca"
  6435. },
  6436. "dist": {
  6437. "type": "zip",
  6438. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/a96aecb36aaf081f1b012e1e62d71f1069ab3dca",
  6439. "reference": "a96aecb36aaf081f1b012e1e62d71f1069ab3dca",
  6440. "shasum": ""
  6441. },
  6442. "require": {
  6443. "php": ">=7.2.5",
  6444. "symfony/polyfill-ctype": "~1.8",
  6445. "symfony/polyfill-mbstring": "~1.0",
  6446. "symfony/polyfill-php80": "^1.15"
  6447. },
  6448. "conflict": {
  6449. "masterminds/html5": "<2.6"
  6450. },
  6451. "require-dev": {
  6452. "masterminds/html5": "^2.6",
  6453. "symfony/css-selector": "^4.4|^5.0"
  6454. },
  6455. "suggest": {
  6456. "symfony/css-selector": ""
  6457. },
  6458. "type": "library",
  6459. "extra": {
  6460. "branch-alias": {
  6461. "dev-master": "5.1-dev"
  6462. }
  6463. },
  6464. "autoload": {
  6465. "psr-4": {
  6466. "Symfony\\Component\\DomCrawler\\": ""
  6467. },
  6468. "exclude-from-classmap": [
  6469. "/Tests/"
  6470. ]
  6471. },
  6472. "notification-url": "https://packagist.org/downloads/",
  6473. "license": [
  6474. "MIT"
  6475. ],
  6476. "authors": [
  6477. {
  6478. "name": "Fabien Potencier",
  6479. "email": "fabien@symfony.com"
  6480. },
  6481. {
  6482. "name": "Symfony Community",
  6483. "homepage": "https://symfony.com/contributors"
  6484. }
  6485. ],
  6486. "description": "Symfony DomCrawler Component",
  6487. "homepage": "https://symfony.com",
  6488. "time": "2020-07-23T08:36:24+00:00"
  6489. },
  6490. {
  6491. "name": "symfony/maker-bundle",
  6492. "version": "v1.20.0",
  6493. "source": {
  6494. "type": "git",
  6495. "url": "https://github.com/symfony/maker-bundle.git",
  6496. "reference": "b048c7b2be5bce9024ae3b0db97d44a107029c27"
  6497. },
  6498. "dist": {
  6499. "type": "zip",
  6500. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/b048c7b2be5bce9024ae3b0db97d44a107029c27",
  6501. "reference": "b048c7b2be5bce9024ae3b0db97d44a107029c27",
  6502. "shasum": ""
  6503. },
  6504. "require": {
  6505. "doctrine/inflector": "^1.2",
  6506. "nikic/php-parser": "^4.0",
  6507. "php": "^7.1.3",
  6508. "symfony/config": "^3.4|^4.0|^5.0",
  6509. "symfony/console": "^3.4|^4.0|^5.0",
  6510. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  6511. "symfony/filesystem": "^3.4|^4.0|^5.0",
  6512. "symfony/finder": "^3.4|^4.0|^5.0",
  6513. "symfony/framework-bundle": "^3.4|^4.0|^5.0",
  6514. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  6515. },
  6516. "require-dev": {
  6517. "composer/semver": "^3.0@dev",
  6518. "doctrine/doctrine-bundle": "^1.8|^2.0",
  6519. "doctrine/orm": "^2.3",
  6520. "friendsofphp/php-cs-fixer": "^2.8",
  6521. "friendsoftwig/twigcs": "^3.1.2",
  6522. "symfony/http-client": "^4.3|^5.0",
  6523. "symfony/phpunit-bridge": "^4.3|^5.0",
  6524. "symfony/process": "^3.4|^4.0|^5.0",
  6525. "symfony/security-core": "^3.4|^4.0|^5.0",
  6526. "symfony/yaml": "^3.4|^4.0|^5.0"
  6527. },
  6528. "type": "symfony-bundle",
  6529. "extra": {
  6530. "branch-alias": {
  6531. "dev-master": "1.0-dev"
  6532. }
  6533. },
  6534. "autoload": {
  6535. "psr-4": {
  6536. "Symfony\\Bundle\\MakerBundle\\": "src/"
  6537. }
  6538. },
  6539. "notification-url": "https://packagist.org/downloads/",
  6540. "license": [
  6541. "MIT"
  6542. ],
  6543. "authors": [
  6544. {
  6545. "name": "Symfony Community",
  6546. "homepage": "https://symfony.com/contributors"
  6547. }
  6548. ],
  6549. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  6550. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  6551. "keywords": [
  6552. "code generator",
  6553. "generator",
  6554. "scaffold",
  6555. "scaffolding"
  6556. ],
  6557. "time": "2020-07-14T11:22:04+00:00"
  6558. },
  6559. {
  6560. "name": "symfony/phpunit-bridge",
  6561. "version": "v5.1.3",
  6562. "source": {
  6563. "type": "git",
  6564. "url": "https://github.com/symfony/phpunit-bridge.git",
  6565. "reference": "964bd57046dfa48687e1412fe5f8006adfcb9675"
  6566. },
  6567. "dist": {
  6568. "type": "zip",
  6569. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/964bd57046dfa48687e1412fe5f8006adfcb9675",
  6570. "reference": "964bd57046dfa48687e1412fe5f8006adfcb9675",
  6571. "shasum": ""
  6572. },
  6573. "require": {
  6574. "php": ">=5.5.9"
  6575. },
  6576. "conflict": {
  6577. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0|<6.4,>=6.0|9.1.2"
  6578. },
  6579. "suggest": {
  6580. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  6581. },
  6582. "bin": [
  6583. "bin/simple-phpunit"
  6584. ],
  6585. "type": "symfony-bridge",
  6586. "extra": {
  6587. "branch-alias": {
  6588. "dev-master": "5.1-dev"
  6589. },
  6590. "thanks": {
  6591. "name": "phpunit/phpunit",
  6592. "url": "https://github.com/sebastianbergmann/phpunit"
  6593. }
  6594. },
  6595. "autoload": {
  6596. "files": [
  6597. "bootstrap.php"
  6598. ],
  6599. "psr-4": {
  6600. "Symfony\\Bridge\\PhpUnit\\": ""
  6601. },
  6602. "exclude-from-classmap": [
  6603. "/Tests/"
  6604. ]
  6605. },
  6606. "notification-url": "https://packagist.org/downloads/",
  6607. "license": [
  6608. "MIT"
  6609. ],
  6610. "authors": [
  6611. {
  6612. "name": "Nicolas Grekas",
  6613. "email": "p@tchwork.com"
  6614. },
  6615. {
  6616. "name": "Symfony Community",
  6617. "homepage": "https://symfony.com/contributors"
  6618. }
  6619. ],
  6620. "description": "Symfony PHPUnit Bridge",
  6621. "homepage": "https://symfony.com",
  6622. "time": "2020-07-23T09:26:24+00:00"
  6623. },
  6624. {
  6625. "name": "symfony/profiler-pack",
  6626. "version": "v1.0.4",
  6627. "source": {
  6628. "type": "git",
  6629. "url": "https://github.com/symfony/profiler-pack.git",
  6630. "reference": "99c4370632c2a59bb0444852f92140074ef02209"
  6631. },
  6632. "dist": {
  6633. "type": "zip",
  6634. "url": "https://api.github.com/repos/symfony/profiler-pack/zipball/99c4370632c2a59bb0444852f92140074ef02209",
  6635. "reference": "99c4370632c2a59bb0444852f92140074ef02209",
  6636. "shasum": ""
  6637. },
  6638. "require": {
  6639. "php": "^7.0",
  6640. "symfony/stopwatch": "*",
  6641. "symfony/twig-bundle": "*",
  6642. "symfony/web-profiler-bundle": "*"
  6643. },
  6644. "type": "symfony-pack",
  6645. "notification-url": "https://packagist.org/downloads/",
  6646. "license": [
  6647. "MIT"
  6648. ],
  6649. "description": "A pack for the Symfony web profiler",
  6650. "time": "2018-12-10T12:11:44+00:00"
  6651. },
  6652. {
  6653. "name": "symfony/test-pack",
  6654. "version": "v1.0.6",
  6655. "source": {
  6656. "type": "git",
  6657. "url": "https://github.com/symfony/test-pack.git",
  6658. "reference": "ff87e800a67d06c423389f77b8209bc9dc469def"
  6659. },
  6660. "dist": {
  6661. "type": "zip",
  6662. "url": "https://api.github.com/repos/symfony/test-pack/zipball/ff87e800a67d06c423389f77b8209bc9dc469def",
  6663. "reference": "ff87e800a67d06c423389f77b8209bc9dc469def",
  6664. "shasum": ""
  6665. },
  6666. "require": {
  6667. "php": "^7.0",
  6668. "symfony/browser-kit": "*",
  6669. "symfony/css-selector": "*",
  6670. "symfony/phpunit-bridge": "*"
  6671. },
  6672. "type": "symfony-pack",
  6673. "notification-url": "https://packagist.org/downloads/",
  6674. "license": [
  6675. "MIT"
  6676. ],
  6677. "description": "A pack for functional and end-to-end testing within a Symfony app",
  6678. "time": "2019-06-21T06:27:32+00:00"
  6679. },
  6680. {
  6681. "name": "symfony/web-profiler-bundle",
  6682. "version": "v5.1.3",
  6683. "source": {
  6684. "type": "git",
  6685. "url": "https://github.com/symfony/web-profiler-bundle.git",
  6686. "reference": "6d32d311d9d599830f57a2fe6bb6e38970150acd"
  6687. },
  6688. "dist": {
  6689. "type": "zip",
  6690. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/6d32d311d9d599830f57a2fe6bb6e38970150acd",
  6691. "reference": "6d32d311d9d599830f57a2fe6bb6e38970150acd",
  6692. "shasum": ""
  6693. },
  6694. "require": {
  6695. "php": ">=7.2.5",
  6696. "symfony/config": "^4.4|^5.0",
  6697. "symfony/framework-bundle": "^5.1",
  6698. "symfony/http-kernel": "^4.4|^5.0",
  6699. "symfony/routing": "^4.4|^5.0",
  6700. "symfony/twig-bundle": "^4.4|^5.0",
  6701. "twig/twig": "^2.10|^3.0"
  6702. },
  6703. "conflict": {
  6704. "symfony/form": "<4.4",
  6705. "symfony/messenger": "<4.4"
  6706. },
  6707. "require-dev": {
  6708. "symfony/browser-kit": "^4.4|^5.0",
  6709. "symfony/console": "^4.4|^5.0",
  6710. "symfony/css-selector": "^4.4|^5.0",
  6711. "symfony/stopwatch": "^4.4|^5.0"
  6712. },
  6713. "type": "symfony-bundle",
  6714. "extra": {
  6715. "branch-alias": {
  6716. "dev-master": "5.1-dev"
  6717. }
  6718. },
  6719. "autoload": {
  6720. "psr-4": {
  6721. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  6722. },
  6723. "exclude-from-classmap": [
  6724. "/Tests/"
  6725. ]
  6726. },
  6727. "notification-url": "https://packagist.org/downloads/",
  6728. "license": [
  6729. "MIT"
  6730. ],
  6731. "authors": [
  6732. {
  6733. "name": "Fabien Potencier",
  6734. "email": "fabien@symfony.com"
  6735. },
  6736. {
  6737. "name": "Symfony Community",
  6738. "homepage": "https://symfony.com/contributors"
  6739. }
  6740. ],
  6741. "description": "Symfony WebProfilerBundle",
  6742. "homepage": "https://symfony.com",
  6743. "time": "2020-07-23T08:36:24+00:00"
  6744. }
  6745. ],
  6746. "aliases": [],
  6747. "minimum-stability": "stable",
  6748. "stability-flags": [],
  6749. "prefer-stable": false,
  6750. "prefer-lowest": false,
  6751. "platform": {
  6752. "php": "^7.2",
  6753. "ext-ctype": "*",
  6754. "ext-iconv": "*"
  6755. },
  6756. "platform-dev": []
  6757. }