composer.lock 232 KB

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