composer.lock 198 KB

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