composer.lock 191 KB

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