composer.lock 232 KB

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