composer.lock 351 KB

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