composer.lock 234 KB

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