composer.lock 235 KB

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