composer.lock 199 KB

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