composer.lock 234 KB

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