composer.lock 265 KB

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