composer.lock 209 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "hash": "c1bdbb1ceca6a8e673906d73c5a9bad5",
  8. "packages": [
  9. {
  10. "name": "aferrandini/phpqrcode",
  11. "version": "1.0.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/aferrandini/PHPQRCode.git",
  15. "reference": "3c1c0454d43710ab5bbe19a51ad4cb41c22e3d46"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/aferrandini/PHPQRCode/zipball/3c1c0454d43710ab5bbe19a51ad4cb41c22e3d46",
  20. "reference": "3c1c0454d43710ab5bbe19a51ad4cb41c22e3d46",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.3.0"
  25. },
  26. "type": "library",
  27. "autoload": {
  28. "psr-0": {
  29. "PHPQRCode": "lib/"
  30. }
  31. },
  32. "notification-url": "https://packagist.org/downloads/",
  33. "license": [
  34. "MIT"
  35. ],
  36. "authors": [
  37. {
  38. "name": "Ariel Ferrandini",
  39. "email": "arielferrandini@gmail.com",
  40. "homepage": "http://www.ferrandini.com/",
  41. "role": "Developer"
  42. }
  43. ],
  44. "description": "PHPQRCode porting and changed for PHP 5.3 compatibility",
  45. "homepage": "https://github.com/aferrandini/PHPQRCode",
  46. "keywords": [
  47. "barcode",
  48. "php",
  49. "qrcode"
  50. ],
  51. "time": "2013-07-08 09:39:08"
  52. },
  53. {
  54. "name": "alchemy/binary-driver",
  55. "version": "1.5.0",
  56. "source": {
  57. "type": "git",
  58. "url": "https://github.com/alchemy-fr/BinaryDriver.git",
  59. "reference": "b32c03d4b56ce29f783051eac55887adae654b41"
  60. },
  61. "dist": {
  62. "type": "zip",
  63. "url": "https://api.github.com/repos/alchemy-fr/BinaryDriver/zipball/b32c03d4b56ce29f783051eac55887adae654b41",
  64. "reference": "b32c03d4b56ce29f783051eac55887adae654b41",
  65. "shasum": ""
  66. },
  67. "require": {
  68. "evenement/evenement": "~1.0",
  69. "monolog/monolog": "~1.3",
  70. "php": ">=5.3.3",
  71. "psr/log": "~1.0",
  72. "symfony/process": "~2.0"
  73. },
  74. "require-dev": {
  75. "phpunit/phpunit": "~3.7"
  76. },
  77. "type": "library",
  78. "autoload": {
  79. "psr-0": {
  80. "Alchemy": "src"
  81. }
  82. },
  83. "notification-url": "https://packagist.org/downloads/",
  84. "license": [
  85. "MIT"
  86. ],
  87. "authors": [
  88. {
  89. "name": "Romain Neutron",
  90. "email": "imprec@gmail.com",
  91. "homepage": "http://www.lickmychip.com/"
  92. },
  93. {
  94. "name": "nlegoff",
  95. "email": "legoff.n@gmail.com"
  96. },
  97. {
  98. "name": "Phraseanet Team",
  99. "email": "info@alchemy.fr",
  100. "homepage": "http://www.phraseanet.com/"
  101. }
  102. ],
  103. "description": "A set of tools to build binary drivers",
  104. "keywords": [
  105. "binary",
  106. "driver"
  107. ],
  108. "time": "2013-06-21 15:51:20"
  109. },
  110. {
  111. "name": "barryvdh/elfinder-builds",
  112. "version": "v2.1.0.3",
  113. "source": {
  114. "type": "git",
  115. "url": "https://github.com/barryvdh/elfinder-builds.git",
  116. "reference": "5826d79edbeccf2a63404f7ca8e9ca66758fd762"
  117. },
  118. "dist": {
  119. "type": "zip",
  120. "url": "https://api.github.com/repos/barryvdh/elfinder-builds/zipball/5826d79edbeccf2a63404f7ca8e9ca66758fd762",
  121. "reference": "5826d79edbeccf2a63404f7ca8e9ca66758fd762",
  122. "shasum": ""
  123. },
  124. "require": {
  125. "php": ">=5.2"
  126. },
  127. "type": "library",
  128. "extra": {
  129. "branch-alias": {
  130. "dev-master": "2.1-dev"
  131. }
  132. },
  133. "autoload": {
  134. "classmap": [
  135. "php"
  136. ]
  137. },
  138. "notification-url": "https://packagist.org/downloads/",
  139. "license": [
  140. "BSD-3-Clause"
  141. ],
  142. "authors": [
  143. {
  144. "name": "Dmitry Levashov",
  145. "email": "dio@std42.ru",
  146. "homepage": "http://std42.ru"
  147. },
  148. {
  149. "name": "Troex Nevelin",
  150. "email": "troex@fury.scancode.ru",
  151. "homepage": "http://std42.ru"
  152. },
  153. {
  154. "name": "Naoki Sawada",
  155. "email": "hypweb@gmail.com",
  156. "homepage": "http://xoops.hypweb.net"
  157. },
  158. {
  159. "name": "Community contributions",
  160. "homepage": "https://github.com/Studio-42/elFinder/contributors"
  161. }
  162. ],
  163. "description": "File manager for web",
  164. "homepage": "http://elfinder.org",
  165. "time": "2015-02-11 11:10:51"
  166. },
  167. {
  168. "name": "behat/transliterator",
  169. "version": "v1.0.1",
  170. "source": {
  171. "type": "git",
  172. "url": "https://github.com/Behat/Transliterator.git",
  173. "reference": "c93521d3462a554332d1ef5bb0e9b5b8ca4106c4"
  174. },
  175. "dist": {
  176. "type": "zip",
  177. "url": "https://api.github.com/repos/Behat/Transliterator/zipball/c93521d3462a554332d1ef5bb0e9b5b8ca4106c4",
  178. "reference": "c93521d3462a554332d1ef5bb0e9b5b8ca4106c4",
  179. "shasum": ""
  180. },
  181. "require": {
  182. "php": ">=5.3.3"
  183. },
  184. "type": "library",
  185. "extra": {
  186. "branch-alias": {
  187. "dev-master": "1.0-dev"
  188. }
  189. },
  190. "autoload": {
  191. "psr-0": {
  192. "Behat\\Transliterator": "src/"
  193. }
  194. },
  195. "notification-url": "https://packagist.org/downloads/",
  196. "license": [
  197. "Artistic-1.0"
  198. ],
  199. "description": "String transliterator",
  200. "keywords": [
  201. "i18n",
  202. "slug",
  203. "transliterator"
  204. ],
  205. "time": "2014-05-15 22:08:22"
  206. },
  207. {
  208. "name": "bower-asset/bootstrap",
  209. "version": "v3.3.4",
  210. "source": {
  211. "type": "git",
  212. "url": "https://github.com/twbs/bootstrap.git",
  213. "reference": "a10eb60bc0b07b747fa0c4ebd8821eb7307bd07f"
  214. },
  215. "dist": {
  216. "type": "zip",
  217. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/a10eb60bc0b07b747fa0c4ebd8821eb7307bd07f",
  218. "reference": "a10eb60bc0b07b747fa0c4ebd8821eb7307bd07f",
  219. "shasum": ""
  220. },
  221. "require": {
  222. "bower-asset/jquery": ">=1.9.1"
  223. },
  224. "type": "bower-asset-library",
  225. "extra": {
  226. "bower-asset-main": [
  227. "less/bootstrap.less",
  228. "dist/css/bootstrap.css",
  229. "dist/js/bootstrap.js",
  230. "dist/fonts/glyphicons-halflings-regular.eot",
  231. "dist/fonts/glyphicons-halflings-regular.svg",
  232. "dist/fonts/glyphicons-halflings-regular.ttf",
  233. "dist/fonts/glyphicons-halflings-regular.woff",
  234. "dist/fonts/glyphicons-halflings-regular.woff2"
  235. ],
  236. "bower-asset-ignore": [
  237. "/.*",
  238. "_config.yml",
  239. "CNAME",
  240. "composer.json",
  241. "CONTRIBUTING.md",
  242. "docs",
  243. "js/tests",
  244. "test-infra"
  245. ]
  246. },
  247. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  248. "keywords": [
  249. "css",
  250. "framework",
  251. "front-end",
  252. "js",
  253. "less",
  254. "mobile-first",
  255. "responsive",
  256. "web"
  257. ]
  258. },
  259. {
  260. "name": "bower-asset/bootstrap-daterangepicker",
  261. "version": "v1.3.19",
  262. "source": {
  263. "type": "git",
  264. "url": "https://github.com/dangrossman/bootstrap-daterangepicker.git",
  265. "reference": "32c012f3882af2eb48f12127958be7e0fe112af0"
  266. },
  267. "dist": {
  268. "type": "zip",
  269. "url": "https://api.github.com/repos/dangrossman/bootstrap-daterangepicker/zipball/32c012f3882af2eb48f12127958be7e0fe112af0",
  270. "reference": "32c012f3882af2eb48f12127958be7e0fe112af0",
  271. "shasum": ""
  272. },
  273. "require": {
  274. "bower-asset/jquery": ">=1.10",
  275. "bower-asset/moment": "~2.9.0"
  276. },
  277. "type": "bower-asset-library",
  278. "extra": {
  279. "bower-asset-main": [
  280. "daterangepicker.js",
  281. "daterangepicker-bs3.css"
  282. ],
  283. "bower-asset-ignore": [
  284. "**/.*",
  285. "node_modules",
  286. "bower_components",
  287. "test",
  288. "tests",
  289. "moment.js",
  290. "moment.min.js"
  291. ]
  292. }
  293. },
  294. {
  295. "name": "bower-asset/ckeditor",
  296. "version": "4.4.7",
  297. "source": {
  298. "type": "git",
  299. "url": "https://github.com/ckeditor/ckeditor-releases.git",
  300. "reference": "cc324415302784eb1abe33a3762fbdd3b48c558b"
  301. },
  302. "dist": {
  303. "type": "zip",
  304. "url": "https://api.github.com/repos/ckeditor/ckeditor-releases/zipball/cc324415302784eb1abe33a3762fbdd3b48c558b",
  305. "reference": "cc324415302784eb1abe33a3762fbdd3b48c558b",
  306. "shasum": ""
  307. },
  308. "type": "bower-asset-library",
  309. "license": [
  310. "For licensing, see LICENSE.md or http://ckeditor.com/license."
  311. ],
  312. "description": "JavaScript WYSIWYG web text editor.",
  313. "keywords": [
  314. "ckeditor",
  315. "editor",
  316. "fckeditor",
  317. "html",
  318. "javascript",
  319. "richtext",
  320. "text",
  321. "wysiwyg"
  322. ]
  323. },
  324. {
  325. "name": "bower-asset/fontawesome",
  326. "version": "v4.3.0",
  327. "source": {
  328. "type": "git",
  329. "url": "https://github.com/FortAwesome/Font-Awesome.git",
  330. "reference": "41b9ed01103e6820c3cb043ba7ddab30ecd3f4c0"
  331. },
  332. "dist": {
  333. "type": "zip",
  334. "url": "https://api.github.com/repos/FortAwesome/Font-Awesome/zipball/41b9ed01103e6820c3cb043ba7ddab30ecd3f4c0",
  335. "reference": "41b9ed01103e6820c3cb043ba7ddab30ecd3f4c0",
  336. "shasum": ""
  337. },
  338. "type": "bower-asset-library",
  339. "extra": {
  340. "bower-asset-main": [
  341. "./css/font-awesome.css",
  342. "./fonts/*"
  343. ],
  344. "bower-asset-ignore": [
  345. "*/.*",
  346. "*.json",
  347. "src",
  348. "*.yml",
  349. "Gemfile",
  350. "Gemfile.lock",
  351. "*.md"
  352. ]
  353. },
  354. "license": [
  355. "OFL-1.1",
  356. "MIT",
  357. "CC-BY-3.0"
  358. ],
  359. "description": "Font Awesome"
  360. },
  361. {
  362. "name": "bower-asset/fullcalendar",
  363. "version": "v2.3.1",
  364. "source": {
  365. "type": "git",
  366. "url": "https://github.com/arshaw/fullcalendar.git",
  367. "reference": "c1a35746058e48d8076fb282a0c324b56de47649"
  368. },
  369. "dist": {
  370. "type": "zip",
  371. "url": "https://api.github.com/repos/arshaw/fullcalendar/zipball/c1a35746058e48d8076fb282a0c324b56de47649",
  372. "reference": "c1a35746058e48d8076fb282a0c324b56de47649",
  373. "shasum": ""
  374. },
  375. "require": {
  376. "bower-asset/jquery": ">=1.7.1",
  377. "bower-asset/moment": ">=2.5.0"
  378. },
  379. "require-dev": {
  380. "bower-asset/bootstrap": "~3.2.0",
  381. "bower-asset/jasmine-fixture": "~1.2.0",
  382. "bower-asset/jasmine-jquery": "~2.0.3",
  383. "bower-asset/jquery-mockjax": "~1.5.4",
  384. "bower-asset/jquery-simulate-ext": "~1.3.0",
  385. "bower-asset/jquery-ui": ">=1.11.1",
  386. "bower-asset/moment-timezone": "~0.2.1"
  387. },
  388. "type": "bower-asset-library",
  389. "extra": {
  390. "bower-asset-main": [
  391. "dist/fullcalendar.js",
  392. "dist/fullcalendar.css"
  393. ],
  394. "bower-asset-ignore": [
  395. "*",
  396. "**/.*",
  397. "!/dist/**",
  398. "!/changelog.*",
  399. "!/license.*",
  400. "!/readme.*"
  401. ]
  402. },
  403. "license": {
  404. "type": "MIT",
  405. "url": "https://github.com/arshaw/fullcalendar/blob/master/license.txt"
  406. },
  407. "description": "Full-sized drag & drop event calendar",
  408. "keywords": [
  409. "calendar",
  410. "event",
  411. "full-sized",
  412. "jquery-plugin"
  413. ]
  414. },
  415. {
  416. "name": "bower-asset/jquery",
  417. "version": "2.1.3",
  418. "source": {
  419. "type": "git",
  420. "url": "https://github.com/jquery/jquery.git",
  421. "reference": "8f2a9d9272d6ed7f32d3a484740ab342c02541e0"
  422. },
  423. "dist": {
  424. "type": "zip",
  425. "url": "https://api.github.com/repos/jquery/jquery/zipball/8f2a9d9272d6ed7f32d3a484740ab342c02541e0",
  426. "reference": "8f2a9d9272d6ed7f32d3a484740ab342c02541e0",
  427. "shasum": ""
  428. },
  429. "require-dev": {
  430. "bower-asset/qunit": "1.14.0",
  431. "bower-asset/requirejs": "2.1.10",
  432. "bower-asset/sinon": "1.8.1",
  433. "bower-asset/sizzle": "2.1.1-patch2"
  434. },
  435. "type": "bower-asset-library",
  436. "extra": {
  437. "bower-asset-main": "dist/jquery.js",
  438. "bower-asset-ignore": [
  439. "**/.*",
  440. "build",
  441. "speed",
  442. "test",
  443. "*.md",
  444. "AUTHORS.txt",
  445. "Gruntfile.js",
  446. "package.json"
  447. ]
  448. },
  449. "license": [
  450. "MIT"
  451. ],
  452. "keywords": [
  453. "javascript",
  454. "jquery",
  455. "library"
  456. ]
  457. },
  458. {
  459. "name": "bower-asset/jquery-timeago",
  460. "version": "v1.4.1",
  461. "source": {
  462. "type": "git",
  463. "url": "https://github.com/rmm5t/jquery-timeago.git",
  464. "reference": "bf9d361e4e939286777751f4457af54b2e000c7c"
  465. },
  466. "dist": {
  467. "type": "zip",
  468. "url": "https://api.github.com/repos/rmm5t/jquery-timeago/zipball/bf9d361e4e939286777751f4457af54b2e000c7c",
  469. "reference": "bf9d361e4e939286777751f4457af54b2e000c7c",
  470. "shasum": ""
  471. },
  472. "require": {
  473. "bower-asset/jquery": ">=1.4"
  474. },
  475. "type": "bower-asset-library",
  476. "extra": {
  477. "bower-asset-main": "jquery.timeago.js",
  478. "bower-asset-ignore": [
  479. "test",
  480. "vendor"
  481. ]
  482. },
  483. "license": [
  484. "MIT"
  485. ]
  486. },
  487. {
  488. "name": "bower-asset/jquery-ui",
  489. "version": "1.11.4",
  490. "source": {
  491. "type": "git",
  492. "url": "https://github.com/components/jqueryui.git",
  493. "reference": "c34f8dbf3ba57b3784b93f26119f436c0e8288e1"
  494. },
  495. "dist": {
  496. "type": "zip",
  497. "url": "https://api.github.com/repos/components/jqueryui/zipball/c34f8dbf3ba57b3784b93f26119f436c0e8288e1",
  498. "reference": "c34f8dbf3ba57b3784b93f26119f436c0e8288e1",
  499. "shasum": ""
  500. },
  501. "require": {
  502. "bower-asset/jquery": ">=1.6"
  503. },
  504. "type": "bower-asset-library",
  505. "extra": {
  506. "bower-asset-main": [
  507. "jquery-ui.js"
  508. ],
  509. "bower-asset-ignore": []
  510. }
  511. },
  512. {
  513. "name": "bower-asset/jqueryui-timepicker-addon",
  514. "version": "v1.5.2",
  515. "source": {
  516. "type": "git",
  517. "url": "https://github.com/trentrichardson/jQuery-Timepicker-Addon.git",
  518. "reference": "feafd1fbbc8c729a3bee47e43c82da111a9dfdff"
  519. },
  520. "dist": {
  521. "type": "zip",
  522. "url": "https://api.github.com/repos/trentrichardson/jQuery-Timepicker-Addon/zipball/feafd1fbbc8c729a3bee47e43c82da111a9dfdff",
  523. "reference": "feafd1fbbc8c729a3bee47e43c82da111a9dfdff",
  524. "shasum": ""
  525. },
  526. "type": "bower-asset-library"
  527. },
  528. {
  529. "name": "bower-asset/mediaelement",
  530. "version": "2.16.4",
  531. "source": {
  532. "type": "git",
  533. "url": "https://github.com/johndyer/mediaelement.git",
  534. "reference": "ceeb1a7f41b2557c4f6a865cee5564c82039201d"
  535. },
  536. "dist": {
  537. "type": "zip",
  538. "url": "https://api.github.com/repos/johndyer/mediaelement/zipball/ceeb1a7f41b2557c4f6a865cee5564c82039201d",
  539. "reference": "ceeb1a7f41b2557c4f6a865cee5564c82039201d",
  540. "shasum": ""
  541. },
  542. "type": "bower-asset-library",
  543. "extra": {
  544. "bower-asset-main": [
  545. "./build/mediaelement-and-player.js",
  546. "./build/mediaelementplayer.css"
  547. ],
  548. "bower-asset-ignore": [
  549. "**",
  550. "!/build/**",
  551. "!/bower.json",
  552. "!/README*"
  553. ]
  554. },
  555. "license": [
  556. "MIT"
  557. ],
  558. "description": "HTML5 <video> and <audio> made easy.",
  559. "keywords": [
  560. "audio",
  561. "html5",
  562. "shim",
  563. "video"
  564. ]
  565. },
  566. {
  567. "name": "bower-asset/modernizr",
  568. "version": "v2.8.3",
  569. "source": {
  570. "type": "git",
  571. "url": "https://github.com/Modernizr/Modernizr.git",
  572. "reference": "d6bb30c0f12ebb3ddd01e90b0bf435e1c34e6f11"
  573. },
  574. "dist": {
  575. "type": "zip",
  576. "url": "https://api.github.com/repos/Modernizr/Modernizr/zipball/d6bb30c0f12ebb3ddd01e90b0bf435e1c34e6f11",
  577. "reference": "d6bb30c0f12ebb3ddd01e90b0bf435e1c34e6f11",
  578. "shasum": ""
  579. },
  580. "type": "bower-asset-library"
  581. },
  582. {
  583. "name": "bower-asset/moment",
  584. "version": "2.9.0",
  585. "source": {
  586. "type": "git",
  587. "url": "https://github.com/moment/moment.git",
  588. "reference": "94ad539f965689289af54b6493abca0a65ab4ce6"
  589. },
  590. "dist": {
  591. "type": "zip",
  592. "url": "https://api.github.com/repos/moment/moment/zipball/94ad539f965689289af54b6493abca0a65ab4ce6",
  593. "reference": "94ad539f965689289af54b6493abca0a65ab4ce6",
  594. "shasum": ""
  595. },
  596. "type": "bower-asset-library",
  597. "extra": {
  598. "bower-asset-main": "moment.js",
  599. "bower-asset-ignore": [
  600. "**/.*",
  601. "node_modules",
  602. "bower_components",
  603. "test",
  604. "tests",
  605. "tasks",
  606. "component.json",
  607. "composer.json",
  608. "CONTRIBUTING.md",
  609. "ender.js",
  610. "Gruntfile.js",
  611. "package.js",
  612. "package.json"
  613. ]
  614. }
  615. },
  616. {
  617. "name": "cocur/slugify",
  618. "version": "v1.1",
  619. "source": {
  620. "type": "git",
  621. "url": "https://github.com/cocur/slugify.git",
  622. "reference": "2b67d4e2b75dbaed2ebefa9eb5683e8940513847"
  623. },
  624. "dist": {
  625. "type": "zip",
  626. "url": "https://api.github.com/repos/cocur/slugify/zipball/2b67d4e2b75dbaed2ebefa9eb5683e8940513847",
  627. "reference": "2b67d4e2b75dbaed2ebefa9eb5683e8940513847",
  628. "shasum": ""
  629. },
  630. "require": {
  631. "php": ">=5.3.3"
  632. },
  633. "require-dev": {
  634. "codeclimate/php-test-reporter": "dev-master",
  635. "laravel/framework": "~4.1",
  636. "latte/latte": "~2.2",
  637. "mockery/mockery": "~0.9",
  638. "nette/di": "~2.2",
  639. "phpunit/phpunit": "~3.7",
  640. "sami/sami": "~1.3",
  641. "satooshi/php-coveralls": "0.6.*",
  642. "silex/silex": "~1.2",
  643. "symfony/dependency-injection": "~2.4",
  644. "symfony/http-kernel": "~2.4",
  645. "twig/twig": "~1",
  646. "zendframework/zend-modulemanager": "~2.2",
  647. "zendframework/zend-servicemanager": "~2.2",
  648. "zendframework/zend-view": "~2.2"
  649. },
  650. "type": "library",
  651. "autoload": {
  652. "psr-4": {
  653. "Cocur\\Slugify\\": "src"
  654. }
  655. },
  656. "notification-url": "https://packagist.org/downloads/",
  657. "license": [
  658. "MIT"
  659. ],
  660. "authors": [
  661. {
  662. "name": "Ivo Bathke",
  663. "email": "ivo.bathke@gmail.com"
  664. },
  665. {
  666. "name": "Florian Eckerstorfer",
  667. "email": "florian@eckerstorfer.co",
  668. "homepage": "https://florian.ec"
  669. }
  670. ],
  671. "description": "Converts a string into a slug.",
  672. "keywords": [
  673. "slug",
  674. "slugify"
  675. ],
  676. "time": "2015-03-18 08:21:30"
  677. },
  678. {
  679. "name": "doctrine/annotations",
  680. "version": "v1.2.3",
  681. "source": {
  682. "type": "git",
  683. "url": "https://github.com/doctrine/annotations.git",
  684. "reference": "eeda578cbe24a170331a1cfdf78be723412df7a4"
  685. },
  686. "dist": {
  687. "type": "zip",
  688. "url": "https://api.github.com/repos/doctrine/annotations/zipball/eeda578cbe24a170331a1cfdf78be723412df7a4",
  689. "reference": "eeda578cbe24a170331a1cfdf78be723412df7a4",
  690. "shasum": ""
  691. },
  692. "require": {
  693. "doctrine/lexer": "1.*",
  694. "php": ">=5.3.2"
  695. },
  696. "require-dev": {
  697. "doctrine/cache": "1.*",
  698. "phpunit/phpunit": "4.*"
  699. },
  700. "type": "library",
  701. "extra": {
  702. "branch-alias": {
  703. "dev-master": "1.3.x-dev"
  704. }
  705. },
  706. "autoload": {
  707. "psr-0": {
  708. "Doctrine\\Common\\Annotations\\": "lib/"
  709. }
  710. },
  711. "notification-url": "https://packagist.org/downloads/",
  712. "license": [
  713. "MIT"
  714. ],
  715. "authors": [
  716. {
  717. "name": "Roman Borschel",
  718. "email": "roman@code-factory.org"
  719. },
  720. {
  721. "name": "Benjamin Eberlei",
  722. "email": "kontakt@beberlei.de"
  723. },
  724. {
  725. "name": "Guilherme Blanco",
  726. "email": "guilhermeblanco@gmail.com"
  727. },
  728. {
  729. "name": "Jonathan Wage",
  730. "email": "jonwage@gmail.com"
  731. },
  732. {
  733. "name": "Johannes Schmitt",
  734. "email": "schmittjoh@gmail.com"
  735. }
  736. ],
  737. "description": "Docblock Annotations Parser",
  738. "homepage": "http://www.doctrine-project.org",
  739. "keywords": [
  740. "annotations",
  741. "docblock",
  742. "parser"
  743. ],
  744. "time": "2014-12-20 20:49:38"
  745. },
  746. {
  747. "name": "doctrine/cache",
  748. "version": "v1.4.0",
  749. "source": {
  750. "type": "git",
  751. "url": "https://github.com/doctrine/cache.git",
  752. "reference": "2346085d2b027b233ae1d5de59b07440b9f288c8"
  753. },
  754. "dist": {
  755. "type": "zip",
  756. "url": "https://api.github.com/repos/doctrine/cache/zipball/2346085d2b027b233ae1d5de59b07440b9f288c8",
  757. "reference": "2346085d2b027b233ae1d5de59b07440b9f288c8",
  758. "shasum": ""
  759. },
  760. "require": {
  761. "php": ">=5.3.2"
  762. },
  763. "conflict": {
  764. "doctrine/common": ">2.2,<2.4"
  765. },
  766. "require-dev": {
  767. "phpunit/phpunit": ">=3.7",
  768. "predis/predis": "~0.8",
  769. "satooshi/php-coveralls": "~0.6"
  770. },
  771. "type": "library",
  772. "extra": {
  773. "branch-alias": {
  774. "dev-master": "1.4.x-dev"
  775. }
  776. },
  777. "autoload": {
  778. "psr-0": {
  779. "Doctrine\\Common\\Cache\\": "lib/"
  780. }
  781. },
  782. "notification-url": "https://packagist.org/downloads/",
  783. "license": [
  784. "MIT"
  785. ],
  786. "authors": [
  787. {
  788. "name": "Roman Borschel",
  789. "email": "roman@code-factory.org"
  790. },
  791. {
  792. "name": "Benjamin Eberlei",
  793. "email": "kontakt@beberlei.de"
  794. },
  795. {
  796. "name": "Guilherme Blanco",
  797. "email": "guilhermeblanco@gmail.com"
  798. },
  799. {
  800. "name": "Jonathan Wage",
  801. "email": "jonwage@gmail.com"
  802. },
  803. {
  804. "name": "Johannes Schmitt",
  805. "email": "schmittjoh@gmail.com"
  806. }
  807. ],
  808. "description": "Caching library offering an object-oriented API for many cache backends",
  809. "homepage": "http://www.doctrine-project.org",
  810. "keywords": [
  811. "cache",
  812. "caching"
  813. ],
  814. "time": "2015-01-15 20:38:55"
  815. },
  816. {
  817. "name": "doctrine/collections",
  818. "version": "v1.2",
  819. "source": {
  820. "type": "git",
  821. "url": "https://github.com/doctrine/collections.git",
  822. "reference": "b99c5c46c87126201899afe88ec490a25eedd6a2"
  823. },
  824. "dist": {
  825. "type": "zip",
  826. "url": "https://api.github.com/repos/doctrine/collections/zipball/b99c5c46c87126201899afe88ec490a25eedd6a2",
  827. "reference": "b99c5c46c87126201899afe88ec490a25eedd6a2",
  828. "shasum": ""
  829. },
  830. "require": {
  831. "php": ">=5.3.2"
  832. },
  833. "type": "library",
  834. "extra": {
  835. "branch-alias": {
  836. "dev-master": "1.2.x-dev"
  837. }
  838. },
  839. "autoload": {
  840. "psr-0": {
  841. "Doctrine\\Common\\Collections\\": "lib/"
  842. }
  843. },
  844. "notification-url": "https://packagist.org/downloads/",
  845. "license": [
  846. "MIT"
  847. ],
  848. "authors": [
  849. {
  850. "name": "Jonathan Wage",
  851. "email": "jonwage@gmail.com",
  852. "homepage": "http://www.jwage.com/",
  853. "role": "Creator"
  854. },
  855. {
  856. "name": "Guilherme Blanco",
  857. "email": "guilhermeblanco@gmail.com",
  858. "homepage": "http://www.instaclick.com"
  859. },
  860. {
  861. "name": "Roman Borschel",
  862. "email": "roman@code-factory.org"
  863. },
  864. {
  865. "name": "Benjamin Eberlei",
  866. "email": "kontakt@beberlei.de"
  867. },
  868. {
  869. "name": "Johannes Schmitt",
  870. "email": "schmittjoh@gmail.com",
  871. "homepage": "https://github.com/schmittjoh",
  872. "role": "Developer of wrapped JMSSerializerBundle"
  873. }
  874. ],
  875. "description": "Collections Abstraction library",
  876. "homepage": "http://www.doctrine-project.org",
  877. "keywords": [
  878. "array",
  879. "collections",
  880. "iterator"
  881. ],
  882. "time": "2014-02-03 23:07:43"
  883. },
  884. {
  885. "name": "doctrine/common",
  886. "version": "v2.4.2",
  887. "source": {
  888. "type": "git",
  889. "url": "https://github.com/doctrine/common.git",
  890. "reference": "5db6ab40e4c531f14dad4ca96a394dfce5d4255b"
  891. },
  892. "dist": {
  893. "type": "zip",
  894. "url": "https://api.github.com/repos/doctrine/common/zipball/5db6ab40e4c531f14dad4ca96a394dfce5d4255b",
  895. "reference": "5db6ab40e4c531f14dad4ca96a394dfce5d4255b",
  896. "shasum": ""
  897. },
  898. "require": {
  899. "doctrine/annotations": "1.*",
  900. "doctrine/cache": "1.*",
  901. "doctrine/collections": "1.*",
  902. "doctrine/inflector": "1.*",
  903. "doctrine/lexer": "1.*",
  904. "php": ">=5.3.2"
  905. },
  906. "require-dev": {
  907. "phpunit/phpunit": "~3.7"
  908. },
  909. "type": "library",
  910. "extra": {
  911. "branch-alias": {
  912. "dev-master": "2.4.x-dev"
  913. }
  914. },
  915. "autoload": {
  916. "psr-0": {
  917. "Doctrine\\Common\\": "lib/"
  918. }
  919. },
  920. "notification-url": "https://packagist.org/downloads/",
  921. "license": [
  922. "MIT"
  923. ],
  924. "authors": [
  925. {
  926. "name": "Jonathan Wage",
  927. "email": "jonwage@gmail.com",
  928. "homepage": "http://www.jwage.com/",
  929. "role": "Creator"
  930. },
  931. {
  932. "name": "Guilherme Blanco",
  933. "email": "guilhermeblanco@gmail.com",
  934. "homepage": "http://www.instaclick.com"
  935. },
  936. {
  937. "name": "Roman Borschel",
  938. "email": "roman@code-factory.org"
  939. },
  940. {
  941. "name": "Benjamin Eberlei",
  942. "email": "kontakt@beberlei.de"
  943. },
  944. {
  945. "name": "Johannes Schmitt",
  946. "email": "schmittjoh@gmail.com",
  947. "homepage": "https://github.com/schmittjoh",
  948. "role": "Developer of wrapped JMSSerializerBundle"
  949. }
  950. ],
  951. "description": "Common Library for Doctrine projects",
  952. "homepage": "http://www.doctrine-project.org",
  953. "keywords": [
  954. "annotations",
  955. "collections",
  956. "eventmanager",
  957. "persistence",
  958. "spl"
  959. ],
  960. "time": "2014-05-21 19:28:51"
  961. },
  962. {
  963. "name": "doctrine/dbal",
  964. "version": "v2.5.1",
  965. "source": {
  966. "type": "git",
  967. "url": "https://github.com/doctrine/dbal.git",
  968. "reference": "628c2256b646ae2417d44e063bce8aec5199d48d"
  969. },
  970. "dist": {
  971. "type": "zip",
  972. "url": "https://api.github.com/repos/doctrine/dbal/zipball/628c2256b646ae2417d44e063bce8aec5199d48d",
  973. "reference": "628c2256b646ae2417d44e063bce8aec5199d48d",
  974. "shasum": ""
  975. },
  976. "require": {
  977. "doctrine/common": ">=2.4,<2.6-dev",
  978. "php": ">=5.3.2"
  979. },
  980. "require-dev": {
  981. "phpunit/phpunit": "4.*",
  982. "symfony/console": "2.*"
  983. },
  984. "suggest": {
  985. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  986. },
  987. "bin": [
  988. "bin/doctrine-dbal"
  989. ],
  990. "type": "library",
  991. "extra": {
  992. "branch-alias": {
  993. "dev-master": "2.5.x-dev"
  994. }
  995. },
  996. "autoload": {
  997. "psr-0": {
  998. "Doctrine\\DBAL\\": "lib/"
  999. }
  1000. },
  1001. "notification-url": "https://packagist.org/downloads/",
  1002. "license": [
  1003. "MIT"
  1004. ],
  1005. "authors": [
  1006. {
  1007. "name": "Roman Borschel",
  1008. "email": "roman@code-factory.org"
  1009. },
  1010. {
  1011. "name": "Benjamin Eberlei",
  1012. "email": "kontakt@beberlei.de"
  1013. },
  1014. {
  1015. "name": "Guilherme Blanco",
  1016. "email": "guilhermeblanco@gmail.com"
  1017. },
  1018. {
  1019. "name": "Jonathan Wage",
  1020. "email": "jonwage@gmail.com"
  1021. }
  1022. ],
  1023. "description": "Database Abstraction Layer",
  1024. "homepage": "http://www.doctrine-project.org",
  1025. "keywords": [
  1026. "database",
  1027. "dbal",
  1028. "persistence",
  1029. "queryobject"
  1030. ],
  1031. "time": "2015-01-12 21:52:47"
  1032. },
  1033. {
  1034. "name": "doctrine/inflector",
  1035. "version": "v1.0.1",
  1036. "source": {
  1037. "type": "git",
  1038. "url": "https://github.com/doctrine/inflector.git",
  1039. "reference": "0bcb2e79d8571787f18b7eb036ed3d004908e604"
  1040. },
  1041. "dist": {
  1042. "type": "zip",
  1043. "url": "https://api.github.com/repos/doctrine/inflector/zipball/0bcb2e79d8571787f18b7eb036ed3d004908e604",
  1044. "reference": "0bcb2e79d8571787f18b7eb036ed3d004908e604",
  1045. "shasum": ""
  1046. },
  1047. "require": {
  1048. "php": ">=5.3.2"
  1049. },
  1050. "require-dev": {
  1051. "phpunit/phpunit": "4.*"
  1052. },
  1053. "type": "library",
  1054. "extra": {
  1055. "branch-alias": {
  1056. "dev-master": "1.0.x-dev"
  1057. }
  1058. },
  1059. "autoload": {
  1060. "psr-0": {
  1061. "Doctrine\\Common\\Inflector\\": "lib/"
  1062. }
  1063. },
  1064. "notification-url": "https://packagist.org/downloads/",
  1065. "license": [
  1066. "MIT"
  1067. ],
  1068. "authors": [
  1069. {
  1070. "name": "Roman Borschel",
  1071. "email": "roman@code-factory.org"
  1072. },
  1073. {
  1074. "name": "Benjamin Eberlei",
  1075. "email": "kontakt@beberlei.de"
  1076. },
  1077. {
  1078. "name": "Guilherme Blanco",
  1079. "email": "guilhermeblanco@gmail.com"
  1080. },
  1081. {
  1082. "name": "Jonathan Wage",
  1083. "email": "jonwage@gmail.com"
  1084. },
  1085. {
  1086. "name": "Johannes Schmitt",
  1087. "email": "schmittjoh@gmail.com"
  1088. }
  1089. ],
  1090. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1091. "homepage": "http://www.doctrine-project.org",
  1092. "keywords": [
  1093. "inflection",
  1094. "pluralize",
  1095. "singularize",
  1096. "string"
  1097. ],
  1098. "time": "2014-12-20 21:24:13"
  1099. },
  1100. {
  1101. "name": "doctrine/lexer",
  1102. "version": "v1.0.1",
  1103. "source": {
  1104. "type": "git",
  1105. "url": "https://github.com/doctrine/lexer.git",
  1106. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1107. },
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1111. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1112. "shasum": ""
  1113. },
  1114. "require": {
  1115. "php": ">=5.3.2"
  1116. },
  1117. "type": "library",
  1118. "extra": {
  1119. "branch-alias": {
  1120. "dev-master": "1.0.x-dev"
  1121. }
  1122. },
  1123. "autoload": {
  1124. "psr-0": {
  1125. "Doctrine\\Common\\Lexer\\": "lib/"
  1126. }
  1127. },
  1128. "notification-url": "https://packagist.org/downloads/",
  1129. "license": [
  1130. "MIT"
  1131. ],
  1132. "authors": [
  1133. {
  1134. "name": "Roman Borschel",
  1135. "email": "roman@code-factory.org"
  1136. },
  1137. {
  1138. "name": "Guilherme Blanco",
  1139. "email": "guilhermeblanco@gmail.com"
  1140. },
  1141. {
  1142. "name": "Johannes Schmitt",
  1143. "email": "schmittjoh@gmail.com"
  1144. }
  1145. ],
  1146. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1147. "homepage": "http://www.doctrine-project.org",
  1148. "keywords": [
  1149. "lexer",
  1150. "parser"
  1151. ],
  1152. "time": "2014-09-09 13:34:57"
  1153. },
  1154. {
  1155. "name": "doctrine/orm",
  1156. "version": "v2.4.7",
  1157. "source": {
  1158. "type": "git",
  1159. "url": "https://github.com/doctrine/doctrine2.git",
  1160. "reference": "2bc4ff3cab2ae297bcd05f2e619d42e6a7ca9e68"
  1161. },
  1162. "dist": {
  1163. "type": "zip",
  1164. "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/2bc4ff3cab2ae297bcd05f2e619d42e6a7ca9e68",
  1165. "reference": "2bc4ff3cab2ae297bcd05f2e619d42e6a7ca9e68",
  1166. "shasum": ""
  1167. },
  1168. "require": {
  1169. "doctrine/collections": "~1.1",
  1170. "doctrine/dbal": "~2.4",
  1171. "ext-pdo": "*",
  1172. "php": ">=5.3.2",
  1173. "symfony/console": "~2.0"
  1174. },
  1175. "require-dev": {
  1176. "satooshi/php-coveralls": "dev-master",
  1177. "symfony/yaml": "~2.1"
  1178. },
  1179. "suggest": {
  1180. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1181. },
  1182. "bin": [
  1183. "bin/doctrine",
  1184. "bin/doctrine.php"
  1185. ],
  1186. "type": "library",
  1187. "extra": {
  1188. "branch-alias": {
  1189. "dev-master": "2.4.x-dev"
  1190. }
  1191. },
  1192. "autoload": {
  1193. "psr-0": {
  1194. "Doctrine\\ORM\\": "lib/"
  1195. }
  1196. },
  1197. "notification-url": "https://packagist.org/downloads/",
  1198. "license": [
  1199. "MIT"
  1200. ],
  1201. "authors": [
  1202. {
  1203. "name": "Roman Borschel",
  1204. "email": "roman@code-factory.org"
  1205. },
  1206. {
  1207. "name": "Benjamin Eberlei",
  1208. "email": "kontakt@beberlei.de"
  1209. },
  1210. {
  1211. "name": "Guilherme Blanco",
  1212. "email": "guilhermeblanco@gmail.com"
  1213. },
  1214. {
  1215. "name": "Jonathan Wage",
  1216. "email": "jonwage@gmail.com"
  1217. }
  1218. ],
  1219. "description": "Object-Relational-Mapper for PHP",
  1220. "homepage": "http://www.doctrine-project.org",
  1221. "keywords": [
  1222. "database",
  1223. "orm"
  1224. ],
  1225. "time": "2014-12-16 13:45:01"
  1226. },
  1227. {
  1228. "name": "emojione/emojione",
  1229. "version": "v1.3.0",
  1230. "source": {
  1231. "type": "git",
  1232. "url": "https://github.com/Ranks/emojione.git",
  1233. "reference": "2a34acf3771a219045e133063aa759035d4f842c"
  1234. },
  1235. "dist": {
  1236. "type": "zip",
  1237. "url": "https://api.github.com/repos/Ranks/emojione/zipball/2a34acf3771a219045e133063aa759035d4f842c",
  1238. "reference": "2a34acf3771a219045e133063aa759035d4f842c",
  1239. "shasum": ""
  1240. },
  1241. "require": {
  1242. "php": ">=5.3"
  1243. },
  1244. "type": "library",
  1245. "autoload": {
  1246. "psr-4": {
  1247. "Emojione\\": "lib/php/src"
  1248. }
  1249. },
  1250. "notification-url": "https://packagist.org/downloads/",
  1251. "description": "Emoji One is a complete set of emojis designed for the web. It includes libraries to easily convert unicode characters to shortnames (:smile:) and shortnames to our custom emoji images. PNG and SVG formats provided for the emoji images.",
  1252. "homepage": "http://www.emojione.com",
  1253. "keywords": [
  1254. "Emoji One",
  1255. "emoji",
  1256. "emojione",
  1257. "emojis",
  1258. "emoticons",
  1259. "smileys",
  1260. "smilies",
  1261. "unicode"
  1262. ],
  1263. "time": "2014-10-31 19:31:57"
  1264. },
  1265. {
  1266. "name": "evenement/evenement",
  1267. "version": "v1.0.0",
  1268. "source": {
  1269. "type": "git",
  1270. "url": "https://github.com/igorw/evenement.git",
  1271. "reference": "fa966683e7df3e5dd5929d984a44abfbd6bafe8d"
  1272. },
  1273. "dist": {
  1274. "type": "zip",
  1275. "url": "https://api.github.com/repos/igorw/evenement/zipball/fa966683e7df3e5dd5929d984a44abfbd6bafe8d",
  1276. "reference": "fa966683e7df3e5dd5929d984a44abfbd6bafe8d",
  1277. "shasum": ""
  1278. },
  1279. "require": {
  1280. "php": ">=5.3.0"
  1281. },
  1282. "type": "library",
  1283. "autoload": {
  1284. "psr-0": {
  1285. "Evenement": "src"
  1286. }
  1287. },
  1288. "notification-url": "https://packagist.org/downloads/",
  1289. "license": [
  1290. "MIT"
  1291. ],
  1292. "authors": [
  1293. {
  1294. "name": "Igor Wiedler",
  1295. "email": "igor@wiedler.ch",
  1296. "homepage": "http://wiedler.ch/igor/"
  1297. }
  1298. ],
  1299. "description": "Événement is a very simple event dispatching library for PHP 5.3",
  1300. "keywords": [
  1301. "event-dispatcher"
  1302. ],
  1303. "time": "2012-05-30 15:01:08"
  1304. },
  1305. {
  1306. "name": "ezyang/htmlpurifier",
  1307. "version": "v4.6.0",
  1308. "source": {
  1309. "type": "git",
  1310. "url": "https://github.com/ezyang/htmlpurifier.git",
  1311. "reference": "6f389f0f25b90d0b495308efcfa073981177f0fd"
  1312. },
  1313. "dist": {
  1314. "type": "zip",
  1315. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/6f389f0f25b90d0b495308efcfa073981177f0fd",
  1316. "reference": "6f389f0f25b90d0b495308efcfa073981177f0fd",
  1317. "shasum": ""
  1318. },
  1319. "require": {
  1320. "php": ">=5.2"
  1321. },
  1322. "type": "library",
  1323. "autoload": {
  1324. "psr-0": {
  1325. "HTMLPurifier": "library/"
  1326. },
  1327. "files": [
  1328. "library/HTMLPurifier.composer.php"
  1329. ]
  1330. },
  1331. "notification-url": "https://packagist.org/downloads/",
  1332. "license": [
  1333. "LGPL"
  1334. ],
  1335. "authors": [
  1336. {
  1337. "name": "Edward Z. Yang",
  1338. "email": "admin@htmlpurifier.org",
  1339. "homepage": "http://ezyang.com"
  1340. }
  1341. ],
  1342. "description": "Standards compliant HTML filter written in PHP",
  1343. "homepage": "http://htmlpurifier.org/",
  1344. "keywords": [
  1345. "html"
  1346. ],
  1347. "time": "2013-11-30 08:25:19"
  1348. },
  1349. {
  1350. "name": "friendsofsymfony/rest-bundle",
  1351. "version": "1.5.3",
  1352. "target-dir": "FOS/RestBundle",
  1353. "source": {
  1354. "type": "git",
  1355. "url": "https://github.com/FriendsOfSymfony/FOSRestBundle.git",
  1356. "reference": "fdd21c4c0cb6222ae37efc9362c6a96bd1432412"
  1357. },
  1358. "dist": {
  1359. "type": "zip",
  1360. "url": "https://api.github.com/repos/FriendsOfSymfony/FOSRestBundle/zipball/fdd21c4c0cb6222ae37efc9362c6a96bd1432412",
  1361. "reference": "fdd21c4c0cb6222ae37efc9362c6a96bd1432412",
  1362. "shasum": ""
  1363. },
  1364. "require": {
  1365. "doctrine/inflector": "~1.0",
  1366. "php": ">=5.3.9",
  1367. "psr/log": "~1.0",
  1368. "symfony/framework-bundle": "~2.2",
  1369. "willdurand/jsonp-callback-validator": "~1.0",
  1370. "willdurand/negotiation": "~1.2"
  1371. },
  1372. "conflict": {
  1373. "jms/serializer": "<0.12",
  1374. "jms/serializer-bundle": "<0.11"
  1375. },
  1376. "require-dev": {
  1377. "jms/serializer-bundle": "~0.12",
  1378. "sensio/framework-extra-bundle": "~2.2",
  1379. "symfony/form": "~2.2",
  1380. "symfony/security": "~2.2",
  1381. "symfony/serializer": "~2.2",
  1382. "symfony/validator": "~2.2",
  1383. "symfony/yaml": "~2.2"
  1384. },
  1385. "suggest": {
  1386. "jms/serializer-bundle": "Add support for advanced serialization capabilities, recommended, requires ~0.12",
  1387. "sensio/framework-extra-bundle": "Add support for route annotations and the view response listener",
  1388. "symfony/serializer": "Add support for basic serialization capabilities and xml decoding, requires ~2.2",
  1389. "symfony/validator": "Add support for validation capabilities in the ParamFetcher, requires ~2.2"
  1390. },
  1391. "type": "symfony-bundle",
  1392. "extra": {
  1393. "branch-alias": {
  1394. "dev-master": "1.5-dev"
  1395. }
  1396. },
  1397. "autoload": {
  1398. "psr-0": {
  1399. "FOS\\RestBundle": ""
  1400. }
  1401. },
  1402. "notification-url": "https://packagist.org/downloads/",
  1403. "license": [
  1404. "MIT"
  1405. ],
  1406. "authors": [
  1407. {
  1408. "name": "Lukas Kahwe Smith",
  1409. "email": "smith@pooteeweet.org"
  1410. },
  1411. {
  1412. "name": "FriendsOfSymfony Community",
  1413. "homepage": "https://github.com/friendsofsymfony/FOSRestBundle/contributors"
  1414. },
  1415. {
  1416. "name": "Konstantin Kudryashov",
  1417. "email": "ever.zet@gmail.com"
  1418. }
  1419. ],
  1420. "description": "This Bundle provides various tools to rapidly develop RESTful API's with Symfony2",
  1421. "homepage": "http://friendsofsymfony.github.com",
  1422. "keywords": [
  1423. "rest"
  1424. ],
  1425. "time": "2015-02-16 15:26:12"
  1426. },
  1427. {
  1428. "name": "friendsofsymfony/user-bundle",
  1429. "version": "v1.3.5",
  1430. "target-dir": "FOS/UserBundle",
  1431. "source": {
  1432. "type": "git",
  1433. "url": "https://github.com/FriendsOfSymfony/FOSUserBundle.git",
  1434. "reference": "d66890ad3489e18be153502c5ccc3f2bf5cce442"
  1435. },
  1436. "dist": {
  1437. "type": "zip",
  1438. "url": "https://api.github.com/repos/FriendsOfSymfony/FOSUserBundle/zipball/d66890ad3489e18be153502c5ccc3f2bf5cce442",
  1439. "reference": "d66890ad3489e18be153502c5ccc3f2bf5cce442",
  1440. "shasum": ""
  1441. },
  1442. "require": {
  1443. "php": ">=5.3.2",
  1444. "symfony/framework-bundle": "~2.1",
  1445. "symfony/security-bundle": "~2.1"
  1446. },
  1447. "require-dev": {
  1448. "doctrine/doctrine-bundle": "*",
  1449. "swiftmailer/swiftmailer": "~4.3",
  1450. "symfony/validator": "~2.1",
  1451. "symfony/yaml": "~2.1",
  1452. "twig/twig": "~1.5",
  1453. "willdurand/propel-typehintable-behavior": "dev-master"
  1454. },
  1455. "suggest": {
  1456. "willdurand/propel-typehintable-behavior": "Needed when using the propel implementation"
  1457. },
  1458. "type": "symfony-bundle",
  1459. "extra": {
  1460. "branch-alias": {
  1461. "dev-master": "2.0.x-dev"
  1462. }
  1463. },
  1464. "autoload": {
  1465. "psr-0": {
  1466. "FOS\\UserBundle": ""
  1467. }
  1468. },
  1469. "notification-url": "https://packagist.org/downloads/",
  1470. "license": [
  1471. "MIT"
  1472. ],
  1473. "authors": [
  1474. {
  1475. "name": "Christophe Coevoet",
  1476. "email": "stof@notk.org"
  1477. },
  1478. {
  1479. "name": "FriendsOfSymfony Community",
  1480. "homepage": "https://github.com/friendsofsymfony/FOSUserBundle/contributors"
  1481. },
  1482. {
  1483. "name": "Thibault Duplessis",
  1484. "email": "thibault.duplessis@gmail.com"
  1485. }
  1486. ],
  1487. "description": "Symfony FOSUserBundle",
  1488. "homepage": "http://friendsofsymfony.github.com",
  1489. "keywords": [
  1490. "User management"
  1491. ],
  1492. "time": "2014-09-04 12:28:43"
  1493. },
  1494. {
  1495. "name": "fxp/composer-asset-plugin",
  1496. "version": "v1.0.0",
  1497. "source": {
  1498. "type": "git",
  1499. "url": "https://github.com/francoispluchino/composer-asset-plugin.git",
  1500. "reference": "dbc856439a09f07987de673aa8a264c1b88b0c6b"
  1501. },
  1502. "dist": {
  1503. "type": "zip",
  1504. "url": "https://api.github.com/repos/francoispluchino/composer-asset-plugin/zipball/dbc856439a09f07987de673aa8a264c1b88b0c6b",
  1505. "reference": "dbc856439a09f07987de673aa8a264c1b88b0c6b",
  1506. "shasum": ""
  1507. },
  1508. "require": {
  1509. "composer-plugin-api": "1.0.0",
  1510. "php": ">=5.3.3"
  1511. },
  1512. "require-dev": {
  1513. "composer/composer": "~1.0@dev"
  1514. },
  1515. "type": "composer-plugin",
  1516. "extra": {
  1517. "class": "Fxp\\Composer\\AssetPlugin\\FxpAssetPlugin",
  1518. "branch-alias": {
  1519. "dev-master": "1.0-dev"
  1520. }
  1521. },
  1522. "autoload": {
  1523. "psr-4": {
  1524. "Fxp\\Composer\\AssetPlugin\\": ""
  1525. }
  1526. },
  1527. "notification-url": "https://packagist.org/downloads/",
  1528. "license": [
  1529. "MIT"
  1530. ],
  1531. "authors": [
  1532. {
  1533. "name": "François Pluchino",
  1534. "email": "francois.pluchino@gmail.com"
  1535. }
  1536. ],
  1537. "description": "NPM/Bower Dependency Manager for Composer",
  1538. "homepage": "https://github.com/francoispluchino/composer-asset-plugin",
  1539. "keywords": [
  1540. "asset",
  1541. "bower",
  1542. "composer",
  1543. "dependency manager",
  1544. "nodejs",
  1545. "npm",
  1546. "package"
  1547. ],
  1548. "time": "2015-01-25 13:24:06"
  1549. },
  1550. {
  1551. "name": "gedmo/doctrine-extensions",
  1552. "version": "v2.3.12",
  1553. "source": {
  1554. "type": "git",
  1555. "url": "https://github.com/Atlantic18/DoctrineExtensions.git",
  1556. "reference": "c3ff3c73c95b01e107af33d4fe3abf80794e2df9"
  1557. },
  1558. "dist": {
  1559. "type": "zip",
  1560. "url": "https://api.github.com/repos/Atlantic18/DoctrineExtensions/zipball/c3ff3c73c95b01e107af33d4fe3abf80794e2df9",
  1561. "reference": "c3ff3c73c95b01e107af33d4fe3abf80794e2df9",
  1562. "shasum": ""
  1563. },
  1564. "require": {
  1565. "behat/transliterator": "~1.0",
  1566. "doctrine/common": "~2.4",
  1567. "php": ">=5.3.2"
  1568. },
  1569. "require-dev": {
  1570. "doctrine/mongodb-odm": ">=1.0.0-BETA11",
  1571. "doctrine/orm": "~2.4",
  1572. "phpunit/phpunit": "~4.4",
  1573. "phpunit/phpunit-mock-objects": "~2.3",
  1574. "symfony/yaml": "~2.3"
  1575. },
  1576. "suggest": {
  1577. "doctrine/mongodb-odm": "to use the extensions with the MongoDB ODM",
  1578. "doctrine/orm": "to use the extensions with the ORM"
  1579. },
  1580. "type": "library",
  1581. "extra": {
  1582. "branch-alias": {
  1583. "dev-master": "2.3.x-dev"
  1584. }
  1585. },
  1586. "autoload": {
  1587. "psr-0": {
  1588. "Gedmo\\": "lib/"
  1589. }
  1590. },
  1591. "notification-url": "https://packagist.org/downloads/",
  1592. "license": [
  1593. "MIT"
  1594. ],
  1595. "authors": [
  1596. {
  1597. "name": "David Buchmann",
  1598. "email": "david@liip.ch"
  1599. },
  1600. {
  1601. "name": "Gediminas Morkevicius",
  1602. "email": "gediminas.morkevicius@gmail.com"
  1603. },
  1604. {
  1605. "name": "Gustavo Falco",
  1606. "email": "comfortablynumb84@gmail.com"
  1607. }
  1608. ],
  1609. "description": "Doctrine2 behavioral extensions",
  1610. "homepage": "http://gediminasm.org/",
  1611. "keywords": [
  1612. "Blameable",
  1613. "behaviors",
  1614. "doctrine2",
  1615. "extensions",
  1616. "gedmo",
  1617. "loggable",
  1618. "nestedset",
  1619. "sluggable",
  1620. "sortable",
  1621. "timestampable",
  1622. "translatable",
  1623. "tree",
  1624. "uploadable"
  1625. ],
  1626. "time": "2015-02-24 21:41:37"
  1627. },
  1628. {
  1629. "name": "jbroadway/urlify",
  1630. "version": "1.0.3-stable",
  1631. "source": {
  1632. "type": "git",
  1633. "url": "https://github.com/jbroadway/urlify.git",
  1634. "reference": "c9ada9d3873d11f72fa772aecd6896efad11ee67"
  1635. },
  1636. "dist": {
  1637. "type": "zip",
  1638. "url": "https://api.github.com/repos/jbroadway/urlify/zipball/c9ada9d3873d11f72fa772aecd6896efad11ee67",
  1639. "reference": "c9ada9d3873d11f72fa772aecd6896efad11ee67",
  1640. "shasum": ""
  1641. },
  1642. "require": {
  1643. "php": ">=5.3.0"
  1644. },
  1645. "type": "library",
  1646. "extra": {
  1647. "branch-alias": {
  1648. "dev-master": "1.0-dev"
  1649. }
  1650. },
  1651. "autoload": {
  1652. "psr-0": {
  1653. "URLify": ""
  1654. }
  1655. },
  1656. "notification-url": "https://packagist.org/downloads/",
  1657. "license": [
  1658. "MIT"
  1659. ],
  1660. "authors": [
  1661. {
  1662. "name": "Johnny Broadway",
  1663. "email": "johnny@johnnybroadway.com",
  1664. "homepage": "http://www.johnnybroadway.com/",
  1665. "role": "Main Developer"
  1666. }
  1667. ],
  1668. "description": "PHP port of URLify.js from the Django project. Transliterates non-ascii characters for use in URLs.",
  1669. "homepage": "https://github.com/jbroadway/urlify",
  1670. "keywords": [
  1671. "encode",
  1672. "iconv",
  1673. "link",
  1674. "slug",
  1675. "translit",
  1676. "transliterate",
  1677. "transliteration",
  1678. "url",
  1679. "urlify"
  1680. ],
  1681. "time": "2014-03-17 16:14:04"
  1682. },
  1683. {
  1684. "name": "knplabs/knp-menu",
  1685. "version": "v2.0.1",
  1686. "source": {
  1687. "type": "git",
  1688. "url": "https://github.com/KnpLabs/KnpMenu.git",
  1689. "reference": "5758d0026d7ed00c8dd4727e413918cf2dc74c1a"
  1690. },
  1691. "dist": {
  1692. "type": "zip",
  1693. "url": "https://api.github.com/repos/KnpLabs/KnpMenu/zipball/5758d0026d7ed00c8dd4727e413918cf2dc74c1a",
  1694. "reference": "5758d0026d7ed00c8dd4727e413918cf2dc74c1a",
  1695. "shasum": ""
  1696. },
  1697. "require": {
  1698. "php": ">=5.3.0"
  1699. },
  1700. "require-dev": {
  1701. "pimple/pimple": "1.0.*",
  1702. "silex/silex": "1.0.*",
  1703. "twig/twig": ">=1.2,<2.0-dev"
  1704. },
  1705. "suggest": {
  1706. "pimple/pimple": "for the built-in implementations of the menu provider and renderer provider",
  1707. "silex/silex": "for the integration with your silex application",
  1708. "twig/twig": "for the TwigRenderer and the integration with your templates"
  1709. },
  1710. "type": "library",
  1711. "extra": {
  1712. "branch-alias": {
  1713. "dev-master": "2.0.x-dev"
  1714. }
  1715. },
  1716. "autoload": {
  1717. "psr-0": {
  1718. "Knp\\Menu\\": "src/"
  1719. }
  1720. },
  1721. "notification-url": "https://packagist.org/downloads/",
  1722. "license": [
  1723. "MIT"
  1724. ],
  1725. "authors": [
  1726. {
  1727. "name": "Christophe Coevoet",
  1728. "email": "stof@notk.org"
  1729. },
  1730. {
  1731. "name": "Knplabs",
  1732. "homepage": "http://knplabs.com"
  1733. },
  1734. {
  1735. "name": "Symfony Community",
  1736. "homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
  1737. }
  1738. ],
  1739. "description": "An object oriented menu library",
  1740. "homepage": "http://knplabs.com",
  1741. "keywords": [
  1742. "menu",
  1743. "tree"
  1744. ],
  1745. "time": "2014-08-01 09:50:16"
  1746. },
  1747. {
  1748. "name": "knplabs/knp-menu-bundle",
  1749. "version": "v2.0.0",
  1750. "target-dir": "Knp/Bundle/MenuBundle",
  1751. "source": {
  1752. "type": "git",
  1753. "url": "https://github.com/KnpLabs/KnpMenuBundle.git",
  1754. "reference": "bdfc95da5ff7e4e67f948aaa9ea5da835a3a9088"
  1755. },
  1756. "dist": {
  1757. "type": "zip",
  1758. "url": "https://api.github.com/repos/KnpLabs/KnpMenuBundle/zipball/bdfc95da5ff7e4e67f948aaa9ea5da835a3a9088",
  1759. "reference": "bdfc95da5ff7e4e67f948aaa9ea5da835a3a9088",
  1760. "shasum": ""
  1761. },
  1762. "require": {
  1763. "knplabs/knp-menu": "~2.0",
  1764. "symfony/framework-bundle": "~2.0"
  1765. },
  1766. "type": "symfony-bundle",
  1767. "extra": {
  1768. "branch-alias": {
  1769. "dev-master": "2.0.x-dev"
  1770. }
  1771. },
  1772. "autoload": {
  1773. "psr-0": {
  1774. "Knp\\Bundle\\MenuBundle": ""
  1775. }
  1776. },
  1777. "notification-url": "https://packagist.org/downloads/",
  1778. "license": [
  1779. "MIT"
  1780. ],
  1781. "authors": [
  1782. {
  1783. "name": "Christophe Coevoet",
  1784. "email": "stof@notk.org"
  1785. },
  1786. {
  1787. "name": "Knplabs",
  1788. "homepage": "http://knplabs.com"
  1789. },
  1790. {
  1791. "name": "Symfony Community",
  1792. "homepage": "https://github.com/KnpLabs/KnpMenuBundle/contributors"
  1793. }
  1794. ],
  1795. "description": "This bundle provides an integration of the KnpMenu library",
  1796. "keywords": [
  1797. "menu"
  1798. ],
  1799. "time": "2014-08-01 09:57:23"
  1800. },
  1801. {
  1802. "name": "michelf/php-markdown",
  1803. "version": "1.4.1",
  1804. "source": {
  1805. "type": "git",
  1806. "url": "https://github.com/michelf/php-markdown.git",
  1807. "reference": "de9a19c7bf352d41cc99ed86c3c0ef17e87394b6"
  1808. },
  1809. "dist": {
  1810. "type": "zip",
  1811. "url": "https://api.github.com/repos/michelf/php-markdown/zipball/de9a19c7bf352d41cc99ed86c3c0ef17e87394b6",
  1812. "reference": "de9a19c7bf352d41cc99ed86c3c0ef17e87394b6",
  1813. "shasum": ""
  1814. },
  1815. "require": {
  1816. "php": ">=5.3.0"
  1817. },
  1818. "type": "library",
  1819. "extra": {
  1820. "branch-alias": {
  1821. "dev-lib": "1.4.x-dev"
  1822. }
  1823. },
  1824. "autoload": {
  1825. "psr-0": {
  1826. "Michelf": ""
  1827. }
  1828. },
  1829. "notification-url": "https://packagist.org/downloads/",
  1830. "license": [
  1831. "BSD-3-Clause"
  1832. ],
  1833. "authors": [
  1834. {
  1835. "name": "Michel Fortin",
  1836. "email": "michel.fortin@michelf.ca",
  1837. "homepage": "http://michelf.ca/",
  1838. "role": "Developer"
  1839. },
  1840. {
  1841. "name": "John Gruber",
  1842. "homepage": "http://daringfireball.net/"
  1843. }
  1844. ],
  1845. "description": "PHP Markdown",
  1846. "homepage": "http://michelf.ca/projects/php-markdown/",
  1847. "keywords": [
  1848. "markdown"
  1849. ],
  1850. "time": "2014-05-05 02:43:50"
  1851. },
  1852. {
  1853. "name": "monolog/monolog",
  1854. "version": "1.13.1",
  1855. "source": {
  1856. "type": "git",
  1857. "url": "https://github.com/Seldaek/monolog.git",
  1858. "reference": "c31a2c4e8db5da8b46c74cf275d7f109c0f249ac"
  1859. },
  1860. "dist": {
  1861. "type": "zip",
  1862. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c31a2c4e8db5da8b46c74cf275d7f109c0f249ac",
  1863. "reference": "c31a2c4e8db5da8b46c74cf275d7f109c0f249ac",
  1864. "shasum": ""
  1865. },
  1866. "require": {
  1867. "php": ">=5.3.0",
  1868. "psr/log": "~1.0"
  1869. },
  1870. "provide": {
  1871. "psr/log-implementation": "1.0.0"
  1872. },
  1873. "require-dev": {
  1874. "aws/aws-sdk-php": "~2.4, >2.4.8",
  1875. "doctrine/couchdb": "~1.0@dev",
  1876. "graylog2/gelf-php": "~1.0",
  1877. "phpunit/phpunit": "~4.0",
  1878. "raven/raven": "~0.5",
  1879. "ruflin/elastica": "0.90.*",
  1880. "swiftmailer/swiftmailer": "~5.3",
  1881. "videlalvaro/php-amqplib": "~2.4"
  1882. },
  1883. "suggest": {
  1884. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1885. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1886. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1887. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1888. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1889. "raven/raven": "Allow sending log messages to a Sentry server",
  1890. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1891. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1892. "videlalvaro/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib"
  1893. },
  1894. "type": "library",
  1895. "extra": {
  1896. "branch-alias": {
  1897. "dev-master": "1.13.x-dev"
  1898. }
  1899. },
  1900. "autoload": {
  1901. "psr-4": {
  1902. "Monolog\\": "src/Monolog"
  1903. }
  1904. },
  1905. "notification-url": "https://packagist.org/downloads/",
  1906. "license": [
  1907. "MIT"
  1908. ],
  1909. "authors": [
  1910. {
  1911. "name": "Jordi Boggiano",
  1912. "email": "j.boggiano@seld.be",
  1913. "homepage": "http://seld.be"
  1914. }
  1915. ],
  1916. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1917. "homepage": "http://github.com/Seldaek/monolog",
  1918. "keywords": [
  1919. "log",
  1920. "logging",
  1921. "psr-3"
  1922. ],
  1923. "time": "2015-03-09 09:58:04"
  1924. },
  1925. {
  1926. "name": "mpdf/mpdf",
  1927. "version": "v5.7.4",
  1928. "source": {
  1929. "type": "git",
  1930. "url": "https://github.com/finwe/mpdf.git",
  1931. "reference": "f9a374c7ea975ce8c795cec4dfd17ef55addac9c"
  1932. },
  1933. "dist": {
  1934. "type": "zip",
  1935. "url": "https://api.github.com/repos/finwe/mpdf/zipball/f9a374c7ea975ce8c795cec4dfd17ef55addac9c",
  1936. "reference": "f9a374c7ea975ce8c795cec4dfd17ef55addac9c",
  1937. "shasum": ""
  1938. },
  1939. "require": {
  1940. "ext-mbstring": "*",
  1941. "php": ">=4.3.10"
  1942. },
  1943. "type": "library",
  1944. "autoload": {
  1945. "classmap": [
  1946. "mpdf.php",
  1947. "classes"
  1948. ]
  1949. },
  1950. "notification-url": "https://packagist.org/downloads/",
  1951. "license": [
  1952. "GPL-1.0+"
  1953. ],
  1954. "authors": [
  1955. {
  1956. "name": "Ian Back"
  1957. }
  1958. ],
  1959. "description": "A PHP class to generate PDF files from HTML with Unicode/UTF-8 and CJK support",
  1960. "homepage": "http://www.mpdf1.com/mpdf/index.php",
  1961. "keywords": [
  1962. "pdf",
  1963. "php",
  1964. "utf-8"
  1965. ],
  1966. "time": "2014-12-14 18:32:11"
  1967. },
  1968. {
  1969. "name": "nelmio/api-doc-bundle",
  1970. "version": "2.8.0",
  1971. "target-dir": "Nelmio/ApiDocBundle",
  1972. "source": {
  1973. "type": "git",
  1974. "url": "https://github.com/nelmio/NelmioApiDocBundle.git",
  1975. "reference": "f23351b1321942c4264efb604653d475cff7201f"
  1976. },
  1977. "dist": {
  1978. "type": "zip",
  1979. "url": "https://api.github.com/repos/nelmio/NelmioApiDocBundle/zipball/f23351b1321942c4264efb604653d475cff7201f",
  1980. "reference": "f23351b1321942c4264efb604653d475cff7201f",
  1981. "shasum": ""
  1982. },
  1983. "require": {
  1984. "michelf/php-markdown": "~1.4",
  1985. "symfony/console": "~2.1",
  1986. "symfony/framework-bundle": "~2.1",
  1987. "symfony/twig-bundle": "~2.1"
  1988. },
  1989. "conflict": {
  1990. "jms/serializer": "<0.12",
  1991. "jms/serializer-bundle": "<0.11"
  1992. },
  1993. "require-dev": {
  1994. "friendsofsymfony/rest-bundle": "~1.0",
  1995. "jms/serializer-bundle": ">=0.11",
  1996. "sensio/framework-extra-bundle": "~3.0",
  1997. "symfony/browser-kit": "~2.1",
  1998. "symfony/css-selector": "~2.1",
  1999. "symfony/form": "~2.1",
  2000. "symfony/validator": "~2.1",
  2001. "symfony/yaml": "~2.1"
  2002. },
  2003. "suggest": {
  2004. "friendsofsymfony/rest-bundle": "For making use of REST information in the doc.",
  2005. "jms/serializer": "For making use of serializer information in the doc.",
  2006. "symfony/form": "For using form definitions as input.",
  2007. "symfony/validator": "For making use of validator information in the doc."
  2008. },
  2009. "type": "symfony-bundle",
  2010. "extra": {
  2011. "branch-alias": {
  2012. "dev-master": "2.8.x-dev"
  2013. }
  2014. },
  2015. "autoload": {
  2016. "psr-0": {
  2017. "Nelmio\\ApiDocBundle": ""
  2018. }
  2019. },
  2020. "notification-url": "https://packagist.org/downloads/",
  2021. "license": [
  2022. "MIT"
  2023. ],
  2024. "authors": [
  2025. {
  2026. "name": "Nelmio",
  2027. "homepage": "http://nelm.io"
  2028. },
  2029. {
  2030. "name": "Symfony Community",
  2031. "homepage": "https://github.com/nelmio/NelmioApiDocBundle/contributors"
  2032. }
  2033. ],
  2034. "description": "Generates documentation for your REST API from annotations",
  2035. "keywords": [
  2036. "api",
  2037. "doc",
  2038. "documentation",
  2039. "rest"
  2040. ],
  2041. "time": "2015-03-06 10:47:58"
  2042. },
  2043. {
  2044. "name": "neutron/temporary-filesystem",
  2045. "version": "2.1.1",
  2046. "source": {
  2047. "type": "git",
  2048. "url": "https://github.com/romainneutron/Temporary-Filesystem.git",
  2049. "reference": "6b21fa99fd452efea16b9a7adb7304ccfff854d0"
  2050. },
  2051. "dist": {
  2052. "type": "zip",
  2053. "url": "https://api.github.com/repos/romainneutron/Temporary-Filesystem/zipball/6b21fa99fd452efea16b9a7adb7304ccfff854d0",
  2054. "reference": "6b21fa99fd452efea16b9a7adb7304ccfff854d0",
  2055. "shasum": ""
  2056. },
  2057. "require": {
  2058. "symfony/filesystem": "~2.0"
  2059. },
  2060. "require-dev": {
  2061. "phpunit/phpunit": "~3.7"
  2062. },
  2063. "type": "library",
  2064. "autoload": {
  2065. "psr-0": {
  2066. "Neutron": "src"
  2067. }
  2068. },
  2069. "notification-url": "https://packagist.org/downloads/",
  2070. "license": [
  2071. "MIT"
  2072. ],
  2073. "authors": [
  2074. {
  2075. "name": "Romain Neutron",
  2076. "email": "imprec@gmail.com",
  2077. "homepage": "http://www.lickmychip.com/"
  2078. }
  2079. ],
  2080. "description": "Symfony filesystem extension to handle temporary files",
  2081. "time": "2013-10-10 10:58:09"
  2082. },
  2083. {
  2084. "name": "php-ffmpeg/php-ffmpeg",
  2085. "version": "0.6.0",
  2086. "source": {
  2087. "type": "git",
  2088. "url": "https://github.com/PHP-FFMpeg/PHP-FFMpeg.git",
  2089. "reference": "6e3134e4ecc96852b1205e6c88ceffdb8cf17d34"
  2090. },
  2091. "dist": {
  2092. "type": "zip",
  2093. "url": "https://api.github.com/repos/PHP-FFMpeg/PHP-FFMpeg/zipball/6e3134e4ecc96852b1205e6c88ceffdb8cf17d34",
  2094. "reference": "6e3134e4ecc96852b1205e6c88ceffdb8cf17d34",
  2095. "shasum": ""
  2096. },
  2097. "require": {
  2098. "alchemy/binary-driver": "~1.5",
  2099. "doctrine/cache": "~1.0",
  2100. "evenement/evenement": "~1.0",
  2101. "neutron/temporary-filesystem": "~2.1, >=2.1.1",
  2102. "php": ">=5.3.3"
  2103. },
  2104. "require-dev": {
  2105. "phpunit/phpunit": "~3.7",
  2106. "sami/sami": "~1.0",
  2107. "silex/silex": "~1.0"
  2108. },
  2109. "suggest": {
  2110. "php-ffmpeg/extras": "A compilation of common audio & video drivers for PHP-FFMpeg"
  2111. },
  2112. "type": "library",
  2113. "extra": {
  2114. "branch-alias": {
  2115. "dev-master": "0.5-dev"
  2116. }
  2117. },
  2118. "autoload": {
  2119. "psr-0": {
  2120. "FFMpeg": "src"
  2121. }
  2122. },
  2123. "notification-url": "https://packagist.org/downloads/",
  2124. "license": [
  2125. "MIT"
  2126. ],
  2127. "authors": [
  2128. {
  2129. "name": "Romain Neutron",
  2130. "email": "imprec@gmail.com",
  2131. "homepage": "http://www.lickmychip.com/"
  2132. },
  2133. {
  2134. "name": "Phraseanet Team",
  2135. "email": "info@alchemy.fr",
  2136. "homepage": "http://www.phraseanet.com/"
  2137. }
  2138. ],
  2139. "description": "FFMpeg PHP, an Object Oriented library to communicate with AVconv / ffmpeg",
  2140. "keywords": [
  2141. "audio",
  2142. "audio processing",
  2143. "avconv",
  2144. "avprobe",
  2145. "ffmpeg",
  2146. "ffprobe",
  2147. "video",
  2148. "video processing"
  2149. ],
  2150. "time": "2015-01-30 19:07:38"
  2151. },
  2152. {
  2153. "name": "psr/log",
  2154. "version": "1.0.0",
  2155. "source": {
  2156. "type": "git",
  2157. "url": "https://github.com/php-fig/log.git",
  2158. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b"
  2159. },
  2160. "dist": {
  2161. "type": "zip",
  2162. "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b",
  2163. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b",
  2164. "shasum": ""
  2165. },
  2166. "type": "library",
  2167. "autoload": {
  2168. "psr-0": {
  2169. "Psr\\Log\\": ""
  2170. }
  2171. },
  2172. "notification-url": "https://packagist.org/downloads/",
  2173. "license": [
  2174. "MIT"
  2175. ],
  2176. "authors": [
  2177. {
  2178. "name": "PHP-FIG",
  2179. "homepage": "http://www.php-fig.org/"
  2180. }
  2181. ],
  2182. "description": "Common interface for logging libraries",
  2183. "keywords": [
  2184. "log",
  2185. "psr",
  2186. "psr-3"
  2187. ],
  2188. "time": "2012-12-21 11:40:51"
  2189. },
  2190. {
  2191. "name": "sabre/vobject",
  2192. "version": "3.4.2",
  2193. "source": {
  2194. "type": "git",
  2195. "url": "https://github.com/fruux/sabre-vobject.git",
  2196. "reference": "0c90f60dae40137f1903c7b5915d3691c4fc99b0"
  2197. },
  2198. "dist": {
  2199. "type": "zip",
  2200. "url": "https://api.github.com/repos/fruux/sabre-vobject/zipball/0c90f60dae40137f1903c7b5915d3691c4fc99b0",
  2201. "reference": "0c90f60dae40137f1903c7b5915d3691c4fc99b0",
  2202. "shasum": ""
  2203. },
  2204. "require": {
  2205. "ext-mbstring": "*",
  2206. "php": ">=5.3.1"
  2207. },
  2208. "require-dev": {
  2209. "phpunit/phpunit": "*",
  2210. "squizlabs/php_codesniffer": "*"
  2211. },
  2212. "bin": [
  2213. "bin/vobject",
  2214. "bin/generate_vcards"
  2215. ],
  2216. "type": "library",
  2217. "extra": {
  2218. "branch-alias": {
  2219. "dev-master": "3.2.x-dev"
  2220. }
  2221. },
  2222. "autoload": {
  2223. "psr-4": {
  2224. "Sabre\\VObject\\": "lib/"
  2225. }
  2226. },
  2227. "notification-url": "https://packagist.org/downloads/",
  2228. "license": [
  2229. "BSD-3-Clause"
  2230. ],
  2231. "authors": [
  2232. {
  2233. "name": "Evert Pot",
  2234. "email": "me@evertpot.com",
  2235. "homepage": "http://evertpot.com/",
  2236. "role": "Developer"
  2237. },
  2238. {
  2239. "name": "Dominik Tobschall",
  2240. "email": "dominik@fruux.com",
  2241. "homepage": "http://tobschall.de/",
  2242. "role": "Developer"
  2243. }
  2244. ],
  2245. "description": "The VObject library for PHP allows you to easily parse and manipulate iCalendar and vCard objects",
  2246. "homepage": "http://sabre.io/vobject/",
  2247. "keywords": [
  2248. "VObject",
  2249. "iCalendar",
  2250. "jCal",
  2251. "jCard",
  2252. "vCard"
  2253. ],
  2254. "time": "2015-02-25 17:47:50"
  2255. },
  2256. {
  2257. "name": "sensio/generator-bundle",
  2258. "version": "v2.5.3",
  2259. "target-dir": "Sensio/Bundle/GeneratorBundle",
  2260. "source": {
  2261. "type": "git",
  2262. "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git",
  2263. "reference": "e50108c2133ee5c9c484555faed50c17a61221d3"
  2264. },
  2265. "dist": {
  2266. "type": "zip",
  2267. "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/e50108c2133ee5c9c484555faed50c17a61221d3",
  2268. "reference": "e50108c2133ee5c9c484555faed50c17a61221d3",
  2269. "shasum": ""
  2270. },
  2271. "require": {
  2272. "symfony/console": "~2.5",
  2273. "symfony/framework-bundle": "~2.2"
  2274. },
  2275. "require-dev": {
  2276. "doctrine/orm": "~2.2,>=2.2.3",
  2277. "symfony/doctrine-bridge": "~2.2",
  2278. "twig/twig": "~1.11"
  2279. },
  2280. "type": "symfony-bundle",
  2281. "extra": {
  2282. "branch-alias": {
  2283. "dev-master": "2.5.x-dev"
  2284. }
  2285. },
  2286. "autoload": {
  2287. "psr-0": {
  2288. "Sensio\\Bundle\\GeneratorBundle": ""
  2289. }
  2290. },
  2291. "notification-url": "https://packagist.org/downloads/",
  2292. "license": [
  2293. "MIT"
  2294. ],
  2295. "authors": [
  2296. {
  2297. "name": "Fabien Potencier",
  2298. "email": "fabien@symfony.com"
  2299. }
  2300. ],
  2301. "description": "This bundle generates code for you",
  2302. "time": "2015-03-17 06:36:52"
  2303. },
  2304. {
  2305. "name": "sonata-project/admin-bundle",
  2306. "version": "2.3.2",
  2307. "source": {
  2308. "type": "git",
  2309. "url": "https://github.com/sonata-project/SonataAdminBundle.git",
  2310. "reference": "3fbeb0037a4dd9792840e804147e1b2f3df2d778"
  2311. },
  2312. "dist": {
  2313. "type": "zip",
  2314. "url": "https://api.github.com/repos/sonata-project/SonataAdminBundle/zipball/3fbeb0037a4dd9792840e804147e1b2f3df2d778",
  2315. "reference": "3fbeb0037a4dd9792840e804147e1b2f3df2d778",
  2316. "shasum": ""
  2317. },
  2318. "require": {
  2319. "doctrine/common": "~2.2",
  2320. "knplabs/knp-menu": ">=1.1.0,<3.0.0",
  2321. "knplabs/knp-menu-bundle": ">=1.1.0,<3.0.0",
  2322. "sensio/generator-bundle": "~2.3",
  2323. "sonata-project/block-bundle": "~2.2,>=2.2.7,<2.3",
  2324. "sonata-project/core-bundle": "~2.2",
  2325. "sonata-project/exporter": "~1.0",
  2326. "symfony/class-loader": "~2.3",
  2327. "symfony/config": "~2.3",
  2328. "symfony/console": "~2.3",
  2329. "symfony/expression-language": "~2.4",
  2330. "symfony/form": "~2.3",
  2331. "symfony/http-foundation": "~2.3",
  2332. "symfony/routing": "~2.3",
  2333. "symfony/security-bundle": "~2.3",
  2334. "symfony/twig-bridge": "~2.3",
  2335. "symfony/validator": "~2.3",
  2336. "twig/extensions": "~1.0",
  2337. "twig/twig": "~1.15"
  2338. },
  2339. "require-dev": {
  2340. "jms/translation-bundle": "~1.1",
  2341. "sonata-project/intl-bundle": "~2.1",
  2342. "symfony/yaml": "~2.3"
  2343. },
  2344. "suggest": {
  2345. "jms/translation-bundle": "Extract message keys from Admins",
  2346. "sonata-project/intl-bundle": "Add localized date and number into the list"
  2347. },
  2348. "type": "symfony-bundle",
  2349. "extra": {
  2350. "branch-alias": {
  2351. "dev-master": "2.3.x-dev"
  2352. }
  2353. },
  2354. "autoload": {
  2355. "psr-4": {
  2356. "Sonata\\AdminBundle\\": ""
  2357. }
  2358. },
  2359. "notification-url": "https://packagist.org/downloads/",
  2360. "license": [
  2361. "MIT"
  2362. ],
  2363. "authors": [
  2364. {
  2365. "name": "Thomas Rabaix",
  2366. "email": "thomas.rabaix@sonata-project.org",
  2367. "homepage": "http://sonata-project.org"
  2368. },
  2369. {
  2370. "name": "Sonata Community",
  2371. "homepage": "https://github.com/sonata-project/SonataAdminBundle/contributors"
  2372. }
  2373. ],
  2374. "description": "Symfony SonataAdminBundle",
  2375. "homepage": "http://sonata-project.org/bundles/admin",
  2376. "keywords": [
  2377. "Admin Generator",
  2378. "admin",
  2379. "bootstrap",
  2380. "sonata"
  2381. ],
  2382. "time": "2015-03-18 00:18:50"
  2383. },
  2384. {
  2385. "name": "sonata-project/block-bundle",
  2386. "version": "2.2.13",
  2387. "source": {
  2388. "type": "git",
  2389. "url": "https://github.com/sonata-project/SonataBlockBundle.git",
  2390. "reference": "ec47e5152ea9a2ea98cb284aa873d37edf903cd7"
  2391. },
  2392. "dist": {
  2393. "type": "zip",
  2394. "url": "https://api.github.com/repos/sonata-project/SonataBlockBundle/zipball/ec47e5152ea9a2ea98cb284aa873d37edf903cd7",
  2395. "reference": "ec47e5152ea9a2ea98cb284aa873d37edf903cd7",
  2396. "shasum": ""
  2397. },
  2398. "require": {
  2399. "doctrine/common": "~2.3",
  2400. "sonata-project/cache": "~1.0",
  2401. "sonata-project/core-bundle": "~2.2",
  2402. "symfony/form": "~2.2",
  2403. "symfony/http-kernel": "~2.2"
  2404. },
  2405. "require-dev": {
  2406. "knplabs/knp-menu-bundle": "~2.0",
  2407. "sonata-project/admin-bundle": "~2.2"
  2408. },
  2409. "suggest": {
  2410. "knplabs/knp-menu-bundle": "~2.0",
  2411. "sonata-project/admin-bundle": "~2.2",
  2412. "sonata-project/cache-bundle": "~2.1"
  2413. },
  2414. "type": "symfony-bundle",
  2415. "extra": {
  2416. "branch-alias": {
  2417. "dev-master": "2.2.x-dev"
  2418. }
  2419. },
  2420. "autoload": {
  2421. "psr-4": {
  2422. "Sonata\\BlockBundle\\": ""
  2423. }
  2424. },
  2425. "notification-url": "https://packagist.org/downloads/",
  2426. "license": [
  2427. "MIT"
  2428. ],
  2429. "authors": [
  2430. {
  2431. "name": "Thomas Rabaix",
  2432. "email": "thomas.rabaix@sonata-project.org",
  2433. "homepage": "http://sonata-project.org"
  2434. },
  2435. {
  2436. "name": "Sonata Community",
  2437. "homepage": "https://github.com/sonata-project/SonataBlockBundle/contributors"
  2438. }
  2439. ],
  2440. "description": "Symfony SonataBlockBundle",
  2441. "homepage": "http://sonata-project.org/bundles/block",
  2442. "keywords": [
  2443. "block",
  2444. "sonata"
  2445. ],
  2446. "time": "2014-09-11 10:42:35"
  2447. },
  2448. {
  2449. "name": "sonata-project/cache",
  2450. "version": "1.0.4",
  2451. "source": {
  2452. "type": "git",
  2453. "url": "https://github.com/sonata-project/cache.git",
  2454. "reference": "548b14c49474ed006543336d8f0be093089a3797"
  2455. },
  2456. "dist": {
  2457. "type": "zip",
  2458. "url": "https://api.github.com/repos/sonata-project/cache/zipball/548b14c49474ed006543336d8f0be093089a3797",
  2459. "reference": "548b14c49474ed006543336d8f0be093089a3797",
  2460. "shasum": ""
  2461. },
  2462. "require-dev": {
  2463. "doctrine/orm": "~2.2",
  2464. "doctrine/phpcr-odm": "~1.0",
  2465. "jackalope/jackalope-doctrine-dbal": "~1.0",
  2466. "predis/predis": "~0.8,<1.0",
  2467. "psr/log": "~1.0"
  2468. },
  2469. "suggest": {
  2470. "doctrine/orm": "ORM support",
  2471. "doctrine/phpcr-odm": "PHPCR ODM support",
  2472. "ext-apc": "Caching with ext/apc",
  2473. "ext-memcached": "Caching with ext/memcached",
  2474. "predis/predis": "Install redis php"
  2475. },
  2476. "type": "library",
  2477. "extra": {
  2478. "branch-alias": {
  2479. "dev-master": "1.x-dev"
  2480. }
  2481. },
  2482. "autoload": {
  2483. "psr-4": {
  2484. "Sonata\\Cache\\Tests\\": "test/",
  2485. "Sonata\\Cache\\": "lib/"
  2486. }
  2487. },
  2488. "notification-url": "https://packagist.org/downloads/",
  2489. "license": [
  2490. "MIT"
  2491. ],
  2492. "authors": [
  2493. {
  2494. "name": "Thomas Rabaix",
  2495. "email": "thomas.rabaix@gmail.com",
  2496. "homepage": "http://sonata-project.org/"
  2497. }
  2498. ],
  2499. "description": "Cache library",
  2500. "homepage": "https://github.com/sonata-project/cache",
  2501. "keywords": [
  2502. "cache",
  2503. "memcached",
  2504. "mongodb",
  2505. "redis"
  2506. ],
  2507. "time": "2014-07-02 20:57:41"
  2508. },
  2509. {
  2510. "name": "sonata-project/core-bundle",
  2511. "version": "2.3.1",
  2512. "source": {
  2513. "type": "git",
  2514. "url": "https://github.com/sonata-project/SonataCoreBundle.git",
  2515. "reference": "b2e2127dbb739598b5ebc0378a9b1d93022680e6"
  2516. },
  2517. "dist": {
  2518. "type": "zip",
  2519. "url": "https://api.github.com/repos/sonata-project/SonataCoreBundle/zipball/b2e2127dbb739598b5ebc0378a9b1d93022680e6",
  2520. "reference": "b2e2127dbb739598b5ebc0378a9b1d93022680e6",
  2521. "shasum": ""
  2522. },
  2523. "require": {
  2524. "cocur/slugify": "*",
  2525. "symfony/config": "~2.3",
  2526. "symfony/form": "~2.3",
  2527. "symfony/http-foundation": "~2.3",
  2528. "symfony/translation": "~2.3",
  2529. "twig/twig": "~1.16"
  2530. },
  2531. "require-dev": {
  2532. "doctrine/orm": "~2.4",
  2533. "doctrine/phpcr-odm": "~1.0",
  2534. "friendsofsymfony/rest-bundle": "~1.1",
  2535. "jackalope/jackalope-doctrine-dbal": "~1.0",
  2536. "jms/serializer-bundle": "~0.11",
  2537. "matthiasnoback/symfony-config-test": "~0.4",
  2538. "matthiasnoback/symfony-dependency-injection-test": "~0.7",
  2539. "sensio/framework-extra-bundle": "~2.3",
  2540. "sonata-project/exporter": "~1.3"
  2541. },
  2542. "type": "symfony-bundle",
  2543. "extra": {
  2544. "branch-alias": {
  2545. "dev-master": "2.3.x-dev"
  2546. }
  2547. },
  2548. "autoload": {
  2549. "psr-4": {
  2550. "Sonata\\CoreBundle\\": ""
  2551. }
  2552. },
  2553. "notification-url": "https://packagist.org/downloads/",
  2554. "license": [
  2555. "MIT"
  2556. ],
  2557. "authors": [
  2558. {
  2559. "name": "Sonata Community",
  2560. "homepage": "https://github.com/sonata-project/SonataCoreBundle/contributors"
  2561. },
  2562. {
  2563. "name": "Thomas Rabaix",
  2564. "email": "thomas.rabaix@sonata-project.org"
  2565. }
  2566. ],
  2567. "description": "Symfony SonataCoreBundle",
  2568. "homepage": "http://sonata-project.org/bundles/core",
  2569. "keywords": [
  2570. "sonata"
  2571. ],
  2572. "time": "2015-03-09 09:18:34"
  2573. },
  2574. {
  2575. "name": "sonata-project/doctrine-extensions",
  2576. "version": "1.0.2",
  2577. "source": {
  2578. "type": "git",
  2579. "url": "https://github.com/sonata-project/sonata-doctrine-extensions.git",
  2580. "reference": "4c6e9bd3ac9ef4c2f19e552a63d4926db5a9400f"
  2581. },
  2582. "dist": {
  2583. "type": "zip",
  2584. "url": "https://api.github.com/repos/sonata-project/sonata-doctrine-extensions/zipball/4c6e9bd3ac9ef4c2f19e552a63d4926db5a9400f",
  2585. "reference": "4c6e9bd3ac9ef4c2f19e552a63d4926db5a9400f",
  2586. "shasum": ""
  2587. },
  2588. "require": {
  2589. "doctrine/dbal": "~2.2",
  2590. "php": ">=5.3.2"
  2591. },
  2592. "type": "library",
  2593. "autoload": {
  2594. "psr-4": {
  2595. "Sonata\\Doctrine\\": "src/",
  2596. "Sonata\\Doctrine\\Tests\\": "tests/"
  2597. }
  2598. },
  2599. "notification-url": "https://packagist.org/downloads/",
  2600. "license": [
  2601. "MIT"
  2602. ],
  2603. "authors": [
  2604. {
  2605. "name": "Thomas Rabaix",
  2606. "email": "thomas.rabaix@sonata-project.org",
  2607. "homepage": "http://sonata-project.org"
  2608. },
  2609. {
  2610. "name": "Sonata Community",
  2611. "homepage": "https://github.com/sonata-project/sonata-doctrine-extensions/contributors"
  2612. }
  2613. ],
  2614. "description": "Doctrine2 behavioral extensions",
  2615. "homepage": "https://github.com/sonata-project/sonata-doctrine-extensions",
  2616. "keywords": [
  2617. "doctrine",
  2618. "doctrine2",
  2619. "json"
  2620. ],
  2621. "time": "2014-02-14 12:45:49"
  2622. },
  2623. {
  2624. "name": "sonata-project/easy-extends-bundle",
  2625. "version": "2.1.9",
  2626. "source": {
  2627. "type": "git",
  2628. "url": "https://github.com/sonata-project/SonataEasyExtendsBundle.git",
  2629. "reference": "fb8c1335e3fcf4791fffd13d63b80741445c5665"
  2630. },
  2631. "dist": {
  2632. "type": "zip",
  2633. "url": "https://api.github.com/repos/sonata-project/SonataEasyExtendsBundle/zipball/fb8c1335e3fcf4791fffd13d63b80741445c5665",
  2634. "reference": "fb8c1335e3fcf4791fffd13d63b80741445c5665",
  2635. "shasum": ""
  2636. },
  2637. "require": {
  2638. "php": ">=5.3.2",
  2639. "symfony/console": "~2",
  2640. "symfony/finder": "~2",
  2641. "symfony/framework-bundle": "~2"
  2642. },
  2643. "require-dev": {
  2644. "doctrine/orm": "~2"
  2645. },
  2646. "type": "symfony-bundle",
  2647. "extra": {
  2648. "branch-alias": {
  2649. "dev-master": "2.1.x-dev"
  2650. }
  2651. },
  2652. "autoload": {
  2653. "psr-4": {
  2654. "Sonata\\EasyExtendsBundle\\": ""
  2655. }
  2656. },
  2657. "notification-url": "https://packagist.org/downloads/",
  2658. "license": [
  2659. "MIT"
  2660. ],
  2661. "authors": [
  2662. {
  2663. "name": "Thomas Rabaix",
  2664. "email": "thomas.rabaix@sonata-project.org",
  2665. "homepage": "http://sonata-project.org"
  2666. },
  2667. {
  2668. "name": "Sonata Community",
  2669. "homepage": "https://github.com/sonata-project/SonataEasyExtendsBundle/contributors"
  2670. }
  2671. ],
  2672. "description": "Symfony SonataEasyExtendsBundle",
  2673. "homepage": "http://sonata-project.org/bundles/easy-extends",
  2674. "keywords": [
  2675. "Easy Extends",
  2676. "sonata"
  2677. ],
  2678. "time": "2014-09-29 09:36:23"
  2679. },
  2680. {
  2681. "name": "sonata-project/exporter",
  2682. "version": "1.3.4",
  2683. "source": {
  2684. "type": "git",
  2685. "url": "https://github.com/sonata-project/exporter.git",
  2686. "reference": "8a88328ccdd1ca1471dd14483a4396350fbda91c"
  2687. },
  2688. "dist": {
  2689. "type": "zip",
  2690. "url": "https://api.github.com/repos/sonata-project/exporter/zipball/8a88328ccdd1ca1471dd14483a4396350fbda91c",
  2691. "reference": "8a88328ccdd1ca1471dd14483a4396350fbda91c",
  2692. "shasum": ""
  2693. },
  2694. "require": {
  2695. "php": ">=5.3.0"
  2696. },
  2697. "require-dev": {
  2698. "propel/propel1": "~1.6",
  2699. "symfony/property-access": "~2.2",
  2700. "symfony/routing": "*"
  2701. },
  2702. "suggest": {
  2703. "ext-curl": "*",
  2704. "propel/propel1": "~1.6",
  2705. "symfony/property-access": "~2.2",
  2706. "symfony/routing": "*"
  2707. },
  2708. "type": "library",
  2709. "extra": {
  2710. "branch-alias": {
  2711. "dev-master": "1-dev"
  2712. }
  2713. },
  2714. "autoload": {
  2715. "psr-0": {
  2716. "Exporter": "lib/"
  2717. }
  2718. },
  2719. "notification-url": "https://packagist.org/downloads/",
  2720. "license": [
  2721. "MIT"
  2722. ],
  2723. "authors": [
  2724. {
  2725. "name": "Thomas Rabaix",
  2726. "email": "thomas.rabaix@gmail.com",
  2727. "homepage": "http://sonata-project.org/"
  2728. }
  2729. ],
  2730. "description": "Lightweight Exporter library",
  2731. "homepage": "https://github.com/sonata-project/Exporter",
  2732. "keywords": [
  2733. "client",
  2734. "csv",
  2735. "data",
  2736. "export",
  2737. "xls"
  2738. ],
  2739. "time": "2014-09-11 09:05:40"
  2740. },
  2741. {
  2742. "name": "sonata-project/google-authenticator",
  2743. "version": "1.0.2",
  2744. "source": {
  2745. "type": "git",
  2746. "url": "https://github.com/sonata-project/GoogleAuthenticator.git",
  2747. "reference": "72f47caddd09d09c0d3c3e046f6b435e0c004cd4"
  2748. },
  2749. "dist": {
  2750. "type": "zip",
  2751. "url": "https://api.github.com/repos/sonata-project/GoogleAuthenticator/zipball/72f47caddd09d09c0d3c3e046f6b435e0c004cd4",
  2752. "reference": "72f47caddd09d09c0d3c3e046f6b435e0c004cd4",
  2753. "shasum": ""
  2754. },
  2755. "require": {
  2756. "php": ">=5.3.0"
  2757. },
  2758. "type": "library",
  2759. "autoload": {
  2760. "psr-4": {
  2761. "Google\\Authenticator\\": "lib/",
  2762. "Google\\Authenticator\\Tests\\": "tests/"
  2763. }
  2764. },
  2765. "notification-url": "https://packagist.org/downloads/",
  2766. "license": [
  2767. "MIT"
  2768. ],
  2769. "authors": [
  2770. {
  2771. "name": "Thomas Rabaix",
  2772. "email": "thomas.rabaix@gmail.com",
  2773. "homepage": "http://sonata-project.org/"
  2774. },
  2775. {
  2776. "name": "Christian Stocker",
  2777. "email": "me@chregu.tv"
  2778. },
  2779. {
  2780. "name": "Andre DeMarre",
  2781. "homepage": "http://www.devnetwork.net/viewtopic.php?f=50&t=94989"
  2782. }
  2783. ],
  2784. "description": "Library to integrate Google Authenticator into a PHP project",
  2785. "homepage": "https://github.com/sonata-project/GoogleAuthenticator",
  2786. "keywords": [
  2787. "google authenticator"
  2788. ],
  2789. "time": "2014-03-31 09:18:53"
  2790. },
  2791. {
  2792. "name": "sonata-project/user-bundle",
  2793. "version": "2.2.4",
  2794. "source": {
  2795. "type": "git",
  2796. "url": "https://github.com/sonata-project/SonataUserBundle.git",
  2797. "reference": "993518c08cce9adcfd0a61c536b924279c978cc3"
  2798. },
  2799. "dist": {
  2800. "type": "zip",
  2801. "url": "https://api.github.com/repos/sonata-project/SonataUserBundle/zipball/993518c08cce9adcfd0a61c536b924279c978cc3",
  2802. "reference": "993518c08cce9adcfd0a61c536b924279c978cc3",
  2803. "shasum": ""
  2804. },
  2805. "require": {
  2806. "friendsofsymfony/rest-bundle": "~1.1",
  2807. "friendsofsymfony/user-bundle": "~1.3",
  2808. "nelmio/api-doc-bundle": "~2.4",
  2809. "sonata-project/admin-bundle": "~2.2,>=2.2.9",
  2810. "sonata-project/core-bundle": "~2.2",
  2811. "sonata-project/doctrine-extensions": "~1.0",
  2812. "sonata-project/easy-extends-bundle": "~2.1",
  2813. "sonata-project/google-authenticator": "~1.0",
  2814. "symfony/console": "~2.2",
  2815. "symfony/form": "~2.2",
  2816. "symfony/http-foundation": "~2.2",
  2817. "symfony/security": "~2.2"
  2818. },
  2819. "require-dev": {
  2820. "sonata-project/seo-bundle": "~1.1"
  2821. },
  2822. "suggest": {
  2823. "sonata-project/doctrine-orm-admin-bundle": "~2.2",
  2824. "sonata-project/seo-bundle": "~1.1"
  2825. },
  2826. "type": "symfony-bundle",
  2827. "extra": {
  2828. "branch-alias": {
  2829. "dev-master": "2.2.x-dev"
  2830. }
  2831. },
  2832. "autoload": {
  2833. "psr-4": {
  2834. "Sonata\\UserBundle\\": ""
  2835. }
  2836. },
  2837. "notification-url": "https://packagist.org/downloads/",
  2838. "license": [
  2839. "MIT"
  2840. ],
  2841. "authors": [
  2842. {
  2843. "name": "Thomas Rabaix",
  2844. "email": "thomas.rabaix@sonata-project.org",
  2845. "homepage": "http://sonata-project.org"
  2846. },
  2847. {
  2848. "name": "Sonata Community",
  2849. "homepage": "https://github.com/sonata-project/SonataUserBundle/contributors"
  2850. }
  2851. ],
  2852. "description": "Symfony SonataUserBundle",
  2853. "homepage": "http://sonata-project.org/bundles/user",
  2854. "keywords": [
  2855. "google authenticator",
  2856. "sonata",
  2857. "user"
  2858. ],
  2859. "time": "2014-02-14 14:56:14"
  2860. },
  2861. {
  2862. "name": "symfony/class-loader",
  2863. "version": "v2.6.5",
  2864. "target-dir": "Symfony/Component/ClassLoader",
  2865. "source": {
  2866. "type": "git",
  2867. "url": "https://github.com/symfony/ClassLoader.git",
  2868. "reference": "56bf6fe551ca013471541d866f73a6cc70ece9c5"
  2869. },
  2870. "dist": {
  2871. "type": "zip",
  2872. "url": "https://api.github.com/repos/symfony/ClassLoader/zipball/56bf6fe551ca013471541d866f73a6cc70ece9c5",
  2873. "reference": "56bf6fe551ca013471541d866f73a6cc70ece9c5",
  2874. "shasum": ""
  2875. },
  2876. "require": {
  2877. "php": ">=5.3.3"
  2878. },
  2879. "require-dev": {
  2880. "symfony/finder": "~2.0,>=2.0.5",
  2881. "symfony/phpunit-bridge": "~2.7"
  2882. },
  2883. "type": "library",
  2884. "extra": {
  2885. "branch-alias": {
  2886. "dev-master": "2.6-dev"
  2887. }
  2888. },
  2889. "autoload": {
  2890. "psr-0": {
  2891. "Symfony\\Component\\ClassLoader\\": ""
  2892. }
  2893. },
  2894. "notification-url": "https://packagist.org/downloads/",
  2895. "license": [
  2896. "MIT"
  2897. ],
  2898. "authors": [
  2899. {
  2900. "name": "Symfony Community",
  2901. "homepage": "http://symfony.com/contributors"
  2902. },
  2903. {
  2904. "name": "Fabien Potencier",
  2905. "email": "fabien@symfony.com"
  2906. }
  2907. ],
  2908. "description": "Symfony ClassLoader Component",
  2909. "homepage": "http://symfony.com",
  2910. "time": "2015-03-13 17:37:22"
  2911. },
  2912. {
  2913. "name": "symfony/config",
  2914. "version": "v2.6.5",
  2915. "target-dir": "Symfony/Component/Config",
  2916. "source": {
  2917. "type": "git",
  2918. "url": "https://github.com/symfony/Config.git",
  2919. "reference": "7a47189c7667ca69bcaafd19ef8a8941db449a2c"
  2920. },
  2921. "dist": {
  2922. "type": "zip",
  2923. "url": "https://api.github.com/repos/symfony/Config/zipball/7a47189c7667ca69bcaafd19ef8a8941db449a2c",
  2924. "reference": "7a47189c7667ca69bcaafd19ef8a8941db449a2c",
  2925. "shasum": ""
  2926. },
  2927. "require": {
  2928. "php": ">=5.3.3",
  2929. "symfony/filesystem": "~2.3"
  2930. },
  2931. "require-dev": {
  2932. "symfony/phpunit-bridge": "~2.7"
  2933. },
  2934. "type": "library",
  2935. "extra": {
  2936. "branch-alias": {
  2937. "dev-master": "2.6-dev"
  2938. }
  2939. },
  2940. "autoload": {
  2941. "psr-0": {
  2942. "Symfony\\Component\\Config\\": ""
  2943. }
  2944. },
  2945. "notification-url": "https://packagist.org/downloads/",
  2946. "license": [
  2947. "MIT"
  2948. ],
  2949. "authors": [
  2950. {
  2951. "name": "Symfony Community",
  2952. "homepage": "http://symfony.com/contributors"
  2953. },
  2954. {
  2955. "name": "Fabien Potencier",
  2956. "email": "fabien@symfony.com"
  2957. }
  2958. ],
  2959. "description": "Symfony Config Component",
  2960. "homepage": "http://symfony.com",
  2961. "time": "2015-03-12 10:28:44"
  2962. },
  2963. {
  2964. "name": "symfony/console",
  2965. "version": "v2.6.5",
  2966. "target-dir": "Symfony/Component/Console",
  2967. "source": {
  2968. "type": "git",
  2969. "url": "https://github.com/symfony/Console.git",
  2970. "reference": "53f86497ccd01677e22435cfb7262599450a90d1"
  2971. },
  2972. "dist": {
  2973. "type": "zip",
  2974. "url": "https://api.github.com/repos/symfony/Console/zipball/53f86497ccd01677e22435cfb7262599450a90d1",
  2975. "reference": "53f86497ccd01677e22435cfb7262599450a90d1",
  2976. "shasum": ""
  2977. },
  2978. "require": {
  2979. "php": ">=5.3.3"
  2980. },
  2981. "require-dev": {
  2982. "psr/log": "~1.0",
  2983. "symfony/event-dispatcher": "~2.1",
  2984. "symfony/phpunit-bridge": "~2.7",
  2985. "symfony/process": "~2.1"
  2986. },
  2987. "suggest": {
  2988. "psr/log": "For using the console logger",
  2989. "symfony/event-dispatcher": "",
  2990. "symfony/process": ""
  2991. },
  2992. "type": "library",
  2993. "extra": {
  2994. "branch-alias": {
  2995. "dev-master": "2.6-dev"
  2996. }
  2997. },
  2998. "autoload": {
  2999. "psr-0": {
  3000. "Symfony\\Component\\Console\\": ""
  3001. }
  3002. },
  3003. "notification-url": "https://packagist.org/downloads/",
  3004. "license": [
  3005. "MIT"
  3006. ],
  3007. "authors": [
  3008. {
  3009. "name": "Symfony Community",
  3010. "homepage": "http://symfony.com/contributors"
  3011. },
  3012. {
  3013. "name": "Fabien Potencier",
  3014. "email": "fabien@symfony.com"
  3015. }
  3016. ],
  3017. "description": "Symfony Console Component",
  3018. "homepage": "http://symfony.com",
  3019. "time": "2015-03-13 17:37:22"
  3020. },
  3021. {
  3022. "name": "symfony/debug",
  3023. "version": "v2.6.5",
  3024. "target-dir": "Symfony/Component/Debug",
  3025. "source": {
  3026. "type": "git",
  3027. "url": "https://github.com/symfony/Debug.git",
  3028. "reference": "5c1570dea188ade0c6c5e874c2f0a6570587aa1c"
  3029. },
  3030. "dist": {
  3031. "type": "zip",
  3032. "url": "https://api.github.com/repos/symfony/Debug/zipball/5c1570dea188ade0c6c5e874c2f0a6570587aa1c",
  3033. "reference": "5c1570dea188ade0c6c5e874c2f0a6570587aa1c",
  3034. "shasum": ""
  3035. },
  3036. "require": {
  3037. "php": ">=5.3.3",
  3038. "psr/log": "~1.0"
  3039. },
  3040. "conflict": {
  3041. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  3042. },
  3043. "require-dev": {
  3044. "symfony/class-loader": "~2.2",
  3045. "symfony/http-foundation": "~2.1",
  3046. "symfony/http-kernel": "~2.3.24|~2.5.9|~2.6,>=2.6.2",
  3047. "symfony/phpunit-bridge": "~2.7"
  3048. },
  3049. "suggest": {
  3050. "symfony/http-foundation": "",
  3051. "symfony/http-kernel": ""
  3052. },
  3053. "type": "library",
  3054. "extra": {
  3055. "branch-alias": {
  3056. "dev-master": "2.6-dev"
  3057. }
  3058. },
  3059. "autoload": {
  3060. "psr-0": {
  3061. "Symfony\\Component\\Debug\\": ""
  3062. }
  3063. },
  3064. "notification-url": "https://packagist.org/downloads/",
  3065. "license": [
  3066. "MIT"
  3067. ],
  3068. "authors": [
  3069. {
  3070. "name": "Symfony Community",
  3071. "homepage": "http://symfony.com/contributors"
  3072. },
  3073. {
  3074. "name": "Fabien Potencier",
  3075. "email": "fabien@symfony.com"
  3076. }
  3077. ],
  3078. "description": "Symfony Debug Component",
  3079. "homepage": "http://symfony.com",
  3080. "time": "2015-03-13 17:37:22"
  3081. },
  3082. {
  3083. "name": "symfony/dependency-injection",
  3084. "version": "v2.6.5",
  3085. "target-dir": "Symfony/Component/DependencyInjection",
  3086. "source": {
  3087. "type": "git",
  3088. "url": "https://github.com/symfony/DependencyInjection.git",
  3089. "reference": "a49245b2beebe332924561c30772b16e1d32f13a"
  3090. },
  3091. "dist": {
  3092. "type": "zip",
  3093. "url": "https://api.github.com/repos/symfony/DependencyInjection/zipball/a49245b2beebe332924561c30772b16e1d32f13a",
  3094. "reference": "a49245b2beebe332924561c30772b16e1d32f13a",
  3095. "shasum": ""
  3096. },
  3097. "require": {
  3098. "php": ">=5.3.3"
  3099. },
  3100. "conflict": {
  3101. "symfony/expression-language": "<2.6"
  3102. },
  3103. "require-dev": {
  3104. "symfony/config": "~2.2",
  3105. "symfony/expression-language": "~2.6",
  3106. "symfony/phpunit-bridge": "~2.7",
  3107. "symfony/yaml": "~2.1"
  3108. },
  3109. "suggest": {
  3110. "symfony/config": "",
  3111. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  3112. "symfony/yaml": ""
  3113. },
  3114. "type": "library",
  3115. "extra": {
  3116. "branch-alias": {
  3117. "dev-master": "2.6-dev"
  3118. }
  3119. },
  3120. "autoload": {
  3121. "psr-0": {
  3122. "Symfony\\Component\\DependencyInjection\\": ""
  3123. }
  3124. },
  3125. "notification-url": "https://packagist.org/downloads/",
  3126. "license": [
  3127. "MIT"
  3128. ],
  3129. "authors": [
  3130. {
  3131. "name": "Symfony Community",
  3132. "homepage": "http://symfony.com/contributors"
  3133. },
  3134. {
  3135. "name": "Fabien Potencier",
  3136. "email": "fabien@symfony.com"
  3137. }
  3138. ],
  3139. "description": "Symfony DependencyInjection Component",
  3140. "homepage": "http://symfony.com",
  3141. "time": "2015-03-17 12:44:40"
  3142. },
  3143. {
  3144. "name": "symfony/doctrine-bridge",
  3145. "version": "v2.6.4",
  3146. "target-dir": "Symfony/Bridge/Doctrine",
  3147. "source": {
  3148. "type": "git",
  3149. "url": "https://github.com/symfony/DoctrineBridge.git",
  3150. "reference": "5c2d4a9c8f149bcbd560304d74a504f6d4ed6e5d"
  3151. },
  3152. "dist": {
  3153. "type": "zip",
  3154. "url": "https://api.github.com/repos/symfony/DoctrineBridge/zipball/5c2d4a9c8f149bcbd560304d74a504f6d4ed6e5d",
  3155. "reference": "5c2d4a9c8f149bcbd560304d74a504f6d4ed6e5d",
  3156. "shasum": ""
  3157. },
  3158. "require": {
  3159. "doctrine/common": "~2.3",
  3160. "php": ">=5.3.3"
  3161. },
  3162. "require-dev": {
  3163. "doctrine/data-fixtures": "1.0.*",
  3164. "doctrine/dbal": "~2.2",
  3165. "doctrine/orm": "~2.2,>=2.2.3",
  3166. "symfony/dependency-injection": "~2.2",
  3167. "symfony/expression-language": "~2.2",
  3168. "symfony/form": "~2.3,>=2.3.8",
  3169. "symfony/http-kernel": "~2.2",
  3170. "symfony/property-access": "~2.3",
  3171. "symfony/security": "~2.2",
  3172. "symfony/stopwatch": "~2.2",
  3173. "symfony/translation": "~2.0,>=2.0.5",
  3174. "symfony/validator": "~2.5,>=2.5.5"
  3175. },
  3176. "suggest": {
  3177. "doctrine/data-fixtures": "",
  3178. "doctrine/dbal": "",
  3179. "doctrine/orm": "",
  3180. "symfony/form": "",
  3181. "symfony/validator": ""
  3182. },
  3183. "type": "symfony-bridge",
  3184. "extra": {
  3185. "branch-alias": {
  3186. "dev-master": "2.6-dev"
  3187. }
  3188. },
  3189. "autoload": {
  3190. "psr-0": {
  3191. "Symfony\\Bridge\\Doctrine\\": ""
  3192. }
  3193. },
  3194. "notification-url": "https://packagist.org/downloads/",
  3195. "license": [
  3196. "MIT"
  3197. ],
  3198. "authors": [
  3199. {
  3200. "name": "Symfony Community",
  3201. "homepage": "http://symfony.com/contributors"
  3202. },
  3203. {
  3204. "name": "Fabien Potencier",
  3205. "email": "fabien@symfony.com"
  3206. }
  3207. ],
  3208. "description": "Symfony Doctrine Bridge",
  3209. "homepage": "http://symfony.com",
  3210. "time": "2015-02-01 16:10:57"
  3211. },
  3212. {
  3213. "name": "symfony/event-dispatcher",
  3214. "version": "v2.6.5",
  3215. "target-dir": "Symfony/Component/EventDispatcher",
  3216. "source": {
  3217. "type": "git",
  3218. "url": "https://github.com/symfony/EventDispatcher.git",
  3219. "reference": "70f7c8478739ad21e3deef0d977b38c77f1fb284"
  3220. },
  3221. "dist": {
  3222. "type": "zip",
  3223. "url": "https://api.github.com/repos/symfony/EventDispatcher/zipball/70f7c8478739ad21e3deef0d977b38c77f1fb284",
  3224. "reference": "70f7c8478739ad21e3deef0d977b38c77f1fb284",
  3225. "shasum": ""
  3226. },
  3227. "require": {
  3228. "php": ">=5.3.3"
  3229. },
  3230. "require-dev": {
  3231. "psr/log": "~1.0",
  3232. "symfony/config": "~2.0,>=2.0.5",
  3233. "symfony/dependency-injection": "~2.6",
  3234. "symfony/expression-language": "~2.6",
  3235. "symfony/phpunit-bridge": "~2.7",
  3236. "symfony/stopwatch": "~2.3"
  3237. },
  3238. "suggest": {
  3239. "symfony/dependency-injection": "",
  3240. "symfony/http-kernel": ""
  3241. },
  3242. "type": "library",
  3243. "extra": {
  3244. "branch-alias": {
  3245. "dev-master": "2.6-dev"
  3246. }
  3247. },
  3248. "autoload": {
  3249. "psr-0": {
  3250. "Symfony\\Component\\EventDispatcher\\": ""
  3251. }
  3252. },
  3253. "notification-url": "https://packagist.org/downloads/",
  3254. "license": [
  3255. "MIT"
  3256. ],
  3257. "authors": [
  3258. {
  3259. "name": "Symfony Community",
  3260. "homepage": "http://symfony.com/contributors"
  3261. },
  3262. {
  3263. "name": "Fabien Potencier",
  3264. "email": "fabien@symfony.com"
  3265. }
  3266. ],
  3267. "description": "Symfony EventDispatcher Component",
  3268. "homepage": "http://symfony.com",
  3269. "time": "2015-03-13 17:37:22"
  3270. },
  3271. {
  3272. "name": "symfony/expression-language",
  3273. "version": "v2.6.5",
  3274. "target-dir": "Symfony/Component/ExpressionLanguage",
  3275. "source": {
  3276. "type": "git",
  3277. "url": "https://github.com/symfony/expression-language.git",
  3278. "reference": "e5a515aa0738c1af3013127b747072124ff3da0b"
  3279. },
  3280. "dist": {
  3281. "type": "zip",
  3282. "url": "https://api.github.com/repos/symfony/expression-language/zipball/e5a515aa0738c1af3013127b747072124ff3da0b",
  3283. "reference": "e5a515aa0738c1af3013127b747072124ff3da0b",
  3284. "shasum": ""
  3285. },
  3286. "require": {
  3287. "php": ">=5.3.3"
  3288. },
  3289. "require-dev": {
  3290. "symfony/phpunit-bridge": "~2.7"
  3291. },
  3292. "type": "library",
  3293. "extra": {
  3294. "branch-alias": {
  3295. "dev-master": "2.6-dev"
  3296. }
  3297. },
  3298. "autoload": {
  3299. "psr-0": {
  3300. "Symfony\\Component\\ExpressionLanguage\\": ""
  3301. }
  3302. },
  3303. "notification-url": "https://packagist.org/downloads/",
  3304. "license": [
  3305. "MIT"
  3306. ],
  3307. "authors": [
  3308. {
  3309. "name": "Symfony Community",
  3310. "homepage": "http://symfony.com/contributors"
  3311. },
  3312. {
  3313. "name": "Fabien Potencier",
  3314. "email": "fabien@symfony.com"
  3315. }
  3316. ],
  3317. "description": "Symfony ExpressionLanguage Component",
  3318. "homepage": "http://symfony.com",
  3319. "time": "2015-03-17 06:52:13"
  3320. },
  3321. {
  3322. "name": "symfony/filesystem",
  3323. "version": "v2.6.5",
  3324. "target-dir": "Symfony/Component/Filesystem",
  3325. "source": {
  3326. "type": "git",
  3327. "url": "https://github.com/symfony/Filesystem.git",
  3328. "reference": "fdc5f151bc2db066b51870d5bea3773d915ced0b"
  3329. },
  3330. "dist": {
  3331. "type": "zip",
  3332. "url": "https://api.github.com/repos/symfony/Filesystem/zipball/fdc5f151bc2db066b51870d5bea3773d915ced0b",
  3333. "reference": "fdc5f151bc2db066b51870d5bea3773d915ced0b",
  3334. "shasum": ""
  3335. },
  3336. "require": {
  3337. "php": ">=5.3.3"
  3338. },
  3339. "require-dev": {
  3340. "symfony/phpunit-bridge": "~2.7"
  3341. },
  3342. "type": "library",
  3343. "extra": {
  3344. "branch-alias": {
  3345. "dev-master": "2.6-dev"
  3346. }
  3347. },
  3348. "autoload": {
  3349. "psr-0": {
  3350. "Symfony\\Component\\Filesystem\\": ""
  3351. }
  3352. },
  3353. "notification-url": "https://packagist.org/downloads/",
  3354. "license": [
  3355. "MIT"
  3356. ],
  3357. "authors": [
  3358. {
  3359. "name": "Symfony Community",
  3360. "homepage": "http://symfony.com/contributors"
  3361. },
  3362. {
  3363. "name": "Fabien Potencier",
  3364. "email": "fabien@symfony.com"
  3365. }
  3366. ],
  3367. "description": "Symfony Filesystem Component",
  3368. "homepage": "http://symfony.com",
  3369. "time": "2015-03-12 10:28:44"
  3370. },
  3371. {
  3372. "name": "symfony/finder",
  3373. "version": "v2.6.5",
  3374. "target-dir": "Symfony/Component/Finder",
  3375. "source": {
  3376. "type": "git",
  3377. "url": "https://github.com/symfony/Finder.git",
  3378. "reference": "bebc7479c566fa4f14b9bcef9e32e719eabec74e"
  3379. },
  3380. "dist": {
  3381. "type": "zip",
  3382. "url": "https://api.github.com/repos/symfony/Finder/zipball/bebc7479c566fa4f14b9bcef9e32e719eabec74e",
  3383. "reference": "bebc7479c566fa4f14b9bcef9e32e719eabec74e",
  3384. "shasum": ""
  3385. },
  3386. "require": {
  3387. "php": ">=5.3.3"
  3388. },
  3389. "require-dev": {
  3390. "symfony/phpunit-bridge": "~2.7"
  3391. },
  3392. "type": "library",
  3393. "extra": {
  3394. "branch-alias": {
  3395. "dev-master": "2.6-dev"
  3396. }
  3397. },
  3398. "autoload": {
  3399. "psr-0": {
  3400. "Symfony\\Component\\Finder\\": ""
  3401. }
  3402. },
  3403. "notification-url": "https://packagist.org/downloads/",
  3404. "license": [
  3405. "MIT"
  3406. ],
  3407. "authors": [
  3408. {
  3409. "name": "Symfony Community",
  3410. "homepage": "http://symfony.com/contributors"
  3411. },
  3412. {
  3413. "name": "Fabien Potencier",
  3414. "email": "fabien@symfony.com"
  3415. }
  3416. ],
  3417. "description": "Symfony Finder Component",
  3418. "homepage": "http://symfony.com",
  3419. "time": "2015-03-12 10:28:44"
  3420. },
  3421. {
  3422. "name": "symfony/form",
  3423. "version": "v2.6.5",
  3424. "target-dir": "Symfony/Component/Form",
  3425. "source": {
  3426. "type": "git",
  3427. "url": "https://github.com/symfony/Form.git",
  3428. "reference": "e222853aeb7da9735f8b2735ce6994cf7c536b54"
  3429. },
  3430. "dist": {
  3431. "type": "zip",
  3432. "url": "https://api.github.com/repos/symfony/Form/zipball/e222853aeb7da9735f8b2735ce6994cf7c536b54",
  3433. "reference": "e222853aeb7da9735f8b2735ce6994cf7c536b54",
  3434. "shasum": ""
  3435. },
  3436. "require": {
  3437. "php": ">=5.3.3",
  3438. "symfony/event-dispatcher": "~2.1",
  3439. "symfony/intl": "~2.3",
  3440. "symfony/options-resolver": "~2.6",
  3441. "symfony/property-access": "~2.3"
  3442. },
  3443. "require-dev": {
  3444. "doctrine/collections": "~1.0",
  3445. "symfony/http-foundation": "~2.2",
  3446. "symfony/http-kernel": "~2.4",
  3447. "symfony/phpunit-bridge": "~2.7",
  3448. "symfony/security-csrf": "~2.4",
  3449. "symfony/translation": "~2.0,>=2.0.5",
  3450. "symfony/validator": "~2.6"
  3451. },
  3452. "suggest": {
  3453. "symfony/framework-bundle": "For templating with PHP.",
  3454. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  3455. "symfony/twig-bridge": "For templating with Twig.",
  3456. "symfony/validator": "For form validation."
  3457. },
  3458. "type": "library",
  3459. "extra": {
  3460. "branch-alias": {
  3461. "dev-master": "2.6-dev"
  3462. }
  3463. },
  3464. "autoload": {
  3465. "psr-0": {
  3466. "Symfony\\Component\\Form\\": ""
  3467. }
  3468. },
  3469. "notification-url": "https://packagist.org/downloads/",
  3470. "license": [
  3471. "MIT"
  3472. ],
  3473. "authors": [
  3474. {
  3475. "name": "Symfony Community",
  3476. "homepage": "http://symfony.com/contributors"
  3477. },
  3478. {
  3479. "name": "Fabien Potencier",
  3480. "email": "fabien@symfony.com"
  3481. }
  3482. ],
  3483. "description": "Symfony Form Component",
  3484. "homepage": "http://symfony.com",
  3485. "time": "2015-03-13 17:37:22"
  3486. },
  3487. {
  3488. "name": "symfony/framework-bundle",
  3489. "version": "v2.6.5",
  3490. "target-dir": "Symfony/Bundle/FrameworkBundle",
  3491. "source": {
  3492. "type": "git",
  3493. "url": "https://github.com/symfony/FrameworkBundle.git",
  3494. "reference": "23c60ad21008d927dff82ed59bcc7723109338d2"
  3495. },
  3496. "dist": {
  3497. "type": "zip",
  3498. "url": "https://api.github.com/repos/symfony/FrameworkBundle/zipball/23c60ad21008d927dff82ed59bcc7723109338d2",
  3499. "reference": "23c60ad21008d927dff82ed59bcc7723109338d2",
  3500. "shasum": ""
  3501. },
  3502. "require": {
  3503. "doctrine/annotations": "~1.0",
  3504. "php": ">=5.3.3",
  3505. "symfony/config": "~2.4",
  3506. "symfony/dependency-injection": "~2.6,>=2.6.2",
  3507. "symfony/event-dispatcher": "~2.5",
  3508. "symfony/filesystem": "~2.3",
  3509. "symfony/http-foundation": "~2.4.9|~2.5,>=2.5.4",
  3510. "symfony/http-kernel": "~2.6",
  3511. "symfony/routing": "~2.3.26|~2.6,>=2.6.5",
  3512. "symfony/security-core": "~2.6",
  3513. "symfony/security-csrf": "~2.6",
  3514. "symfony/stopwatch": "~2.3",
  3515. "symfony/templating": "~2.1",
  3516. "symfony/translation": "~2.6"
  3517. },
  3518. "require-dev": {
  3519. "symfony/browser-kit": "~2.4",
  3520. "symfony/class-loader": "~2.1",
  3521. "symfony/console": "~2.5,>=2.5.2",
  3522. "symfony/css-selector": "~2.0,>=2.0.5",
  3523. "symfony/dom-crawler": "~2.0,>=2.0.5",
  3524. "symfony/expression-language": "~2.6",
  3525. "symfony/finder": "~2.0,>=2.0.5",
  3526. "symfony/form": "~2.6",
  3527. "symfony/intl": "~2.3",
  3528. "symfony/phpunit-bridge": "~2.7",
  3529. "symfony/process": "~2.0,>=2.0.5",
  3530. "symfony/security": "~2.6",
  3531. "symfony/validator": "~2.5",
  3532. "symfony/yaml": "~2.0,>=2.0.5"
  3533. },
  3534. "suggest": {
  3535. "doctrine/cache": "For using alternative cache drivers",
  3536. "symfony/console": "For using the console commands",
  3537. "symfony/finder": "For using the translation loader and cache warmer",
  3538. "symfony/form": "For using forms",
  3539. "symfony/validator": "For using validation",
  3540. "symfony/yaml": "For using the debug:config and yaml:lint commands"
  3541. },
  3542. "type": "symfony-bundle",
  3543. "extra": {
  3544. "branch-alias": {
  3545. "dev-master": "2.6-dev"
  3546. }
  3547. },
  3548. "autoload": {
  3549. "psr-0": {
  3550. "Symfony\\Bundle\\FrameworkBundle\\": ""
  3551. }
  3552. },
  3553. "notification-url": "https://packagist.org/downloads/",
  3554. "license": [
  3555. "MIT"
  3556. ],
  3557. "authors": [
  3558. {
  3559. "name": "Symfony Community",
  3560. "homepage": "http://symfony.com/contributors"
  3561. },
  3562. {
  3563. "name": "Fabien Potencier",
  3564. "email": "fabien@symfony.com"
  3565. }
  3566. ],
  3567. "description": "Symfony FrameworkBundle",
  3568. "homepage": "http://symfony.com",
  3569. "time": "2015-03-13 17:37:22"
  3570. },
  3571. {
  3572. "name": "symfony/http-foundation",
  3573. "version": "v2.6.5",
  3574. "target-dir": "Symfony/Component/HttpFoundation",
  3575. "source": {
  3576. "type": "git",
  3577. "url": "https://github.com/symfony/HttpFoundation.git",
  3578. "reference": "d527885e37b55ec0e3dc6f4b70566d0f9b2f2388"
  3579. },
  3580. "dist": {
  3581. "type": "zip",
  3582. "url": "https://api.github.com/repos/symfony/HttpFoundation/zipball/d527885e37b55ec0e3dc6f4b70566d0f9b2f2388",
  3583. "reference": "d527885e37b55ec0e3dc6f4b70566d0f9b2f2388",
  3584. "shasum": ""
  3585. },
  3586. "require": {
  3587. "php": ">=5.3.3"
  3588. },
  3589. "require-dev": {
  3590. "symfony/expression-language": "~2.4",
  3591. "symfony/phpunit-bridge": "~2.7"
  3592. },
  3593. "type": "library",
  3594. "extra": {
  3595. "branch-alias": {
  3596. "dev-master": "2.6-dev"
  3597. }
  3598. },
  3599. "autoload": {
  3600. "psr-0": {
  3601. "Symfony\\Component\\HttpFoundation\\": ""
  3602. },
  3603. "classmap": [
  3604. "Symfony/Component/HttpFoundation/Resources/stubs"
  3605. ]
  3606. },
  3607. "notification-url": "https://packagist.org/downloads/",
  3608. "license": [
  3609. "MIT"
  3610. ],
  3611. "authors": [
  3612. {
  3613. "name": "Symfony Community",
  3614. "homepage": "http://symfony.com/contributors"
  3615. },
  3616. {
  3617. "name": "Fabien Potencier",
  3618. "email": "fabien@symfony.com"
  3619. }
  3620. ],
  3621. "description": "Symfony HttpFoundation Component",
  3622. "homepage": "http://symfony.com",
  3623. "time": "2015-03-13 17:37:22"
  3624. },
  3625. {
  3626. "name": "symfony/http-kernel",
  3627. "version": "v2.6.5",
  3628. "target-dir": "Symfony/Component/HttpKernel",
  3629. "source": {
  3630. "type": "git",
  3631. "url": "https://github.com/symfony/HttpKernel.git",
  3632. "reference": "6f7b2d3ba8bf02cf77edb399696e85ef24a888a4"
  3633. },
  3634. "dist": {
  3635. "type": "zip",
  3636. "url": "https://api.github.com/repos/symfony/HttpKernel/zipball/6f7b2d3ba8bf02cf77edb399696e85ef24a888a4",
  3637. "reference": "6f7b2d3ba8bf02cf77edb399696e85ef24a888a4",
  3638. "shasum": ""
  3639. },
  3640. "require": {
  3641. "php": ">=5.3.3",
  3642. "psr/log": "~1.0",
  3643. "symfony/debug": "~2.6,>=2.6.2",
  3644. "symfony/event-dispatcher": "~2.5.9|~2.6,>=2.6.2",
  3645. "symfony/http-foundation": "~2.5,>=2.5.4"
  3646. },
  3647. "require-dev": {
  3648. "symfony/browser-kit": "~2.3",
  3649. "symfony/class-loader": "~2.1",
  3650. "symfony/config": "~2.0,>=2.0.5",
  3651. "symfony/console": "~2.3",
  3652. "symfony/css-selector": "~2.0,>=2.0.5",
  3653. "symfony/dependency-injection": "~2.2",
  3654. "symfony/dom-crawler": "~2.0,>=2.0.5",
  3655. "symfony/expression-language": "~2.4",
  3656. "symfony/finder": "~2.0,>=2.0.5",
  3657. "symfony/phpunit-bridge": "~2.7",
  3658. "symfony/process": "~2.0,>=2.0.5",
  3659. "symfony/routing": "~2.2",
  3660. "symfony/stopwatch": "~2.3",
  3661. "symfony/templating": "~2.2",
  3662. "symfony/translation": "~2.0,>=2.0.5",
  3663. "symfony/var-dumper": "~2.6"
  3664. },
  3665. "suggest": {
  3666. "symfony/browser-kit": "",
  3667. "symfony/class-loader": "",
  3668. "symfony/config": "",
  3669. "symfony/console": "",
  3670. "symfony/dependency-injection": "",
  3671. "symfony/finder": "",
  3672. "symfony/var-dumper": ""
  3673. },
  3674. "type": "library",
  3675. "extra": {
  3676. "branch-alias": {
  3677. "dev-master": "2.6-dev"
  3678. }
  3679. },
  3680. "autoload": {
  3681. "psr-0": {
  3682. "Symfony\\Component\\HttpKernel\\": ""
  3683. }
  3684. },
  3685. "notification-url": "https://packagist.org/downloads/",
  3686. "license": [
  3687. "MIT"
  3688. ],
  3689. "authors": [
  3690. {
  3691. "name": "Symfony Community",
  3692. "homepage": "http://symfony.com/contributors"
  3693. },
  3694. {
  3695. "name": "Fabien Potencier",
  3696. "email": "fabien@symfony.com"
  3697. }
  3698. ],
  3699. "description": "Symfony HttpKernel Component",
  3700. "homepage": "http://symfony.com",
  3701. "time": "2015-03-17 14:58:46"
  3702. },
  3703. {
  3704. "name": "symfony/intl",
  3705. "version": "v2.6.5",
  3706. "target-dir": "Symfony/Component/Intl",
  3707. "source": {
  3708. "type": "git",
  3709. "url": "https://github.com/symfony/Intl.git",
  3710. "reference": "dc086c64847765835d6ceda9113436684f55b53a"
  3711. },
  3712. "dist": {
  3713. "type": "zip",
  3714. "url": "https://api.github.com/repos/symfony/Intl/zipball/dc086c64847765835d6ceda9113436684f55b53a",
  3715. "reference": "dc086c64847765835d6ceda9113436684f55b53a",
  3716. "shasum": ""
  3717. },
  3718. "require": {
  3719. "php": ">=5.3.3"
  3720. },
  3721. "require-dev": {
  3722. "symfony/filesystem": ">=2.1",
  3723. "symfony/phpunit-bridge": "~2.7"
  3724. },
  3725. "suggest": {
  3726. "ext-intl": "to use the component with locales other than \"en\""
  3727. },
  3728. "type": "library",
  3729. "extra": {
  3730. "branch-alias": {
  3731. "dev-master": "2.6-dev"
  3732. }
  3733. },
  3734. "autoload": {
  3735. "psr-0": {
  3736. "Symfony\\Component\\Intl\\": ""
  3737. },
  3738. "classmap": [
  3739. "Symfony/Component/Intl/Resources/stubs"
  3740. ],
  3741. "files": [
  3742. "Symfony/Component/Intl/Resources/stubs/functions.php"
  3743. ]
  3744. },
  3745. "notification-url": "https://packagist.org/downloads/",
  3746. "license": [
  3747. "MIT"
  3748. ],
  3749. "authors": [
  3750. {
  3751. "name": "Symfony Community",
  3752. "homepage": "http://symfony.com/contributors"
  3753. },
  3754. {
  3755. "name": "Bernhard Schussek",
  3756. "email": "bschussek@gmail.com"
  3757. },
  3758. {
  3759. "name": "Eriksen Costa",
  3760. "email": "eriksen.costa@infranology.com.br"
  3761. },
  3762. {
  3763. "name": "Igor Wiedler",
  3764. "email": "igor@wiedler.ch"
  3765. }
  3766. ],
  3767. "description": "A PHP replacement layer for the C intl extension that includes additional data from the ICU library.",
  3768. "homepage": "http://symfony.com",
  3769. "keywords": [
  3770. "i18n",
  3771. "icu",
  3772. "internationalization",
  3773. "intl",
  3774. "l10n",
  3775. "localization"
  3776. ],
  3777. "time": "2015-02-24 11:52:21"
  3778. },
  3779. {
  3780. "name": "symfony/options-resolver",
  3781. "version": "v2.6.5",
  3782. "target-dir": "Symfony/Component/OptionsResolver",
  3783. "source": {
  3784. "type": "git",
  3785. "url": "https://github.com/symfony/OptionsResolver.git",
  3786. "reference": "d619503992eea05eb407a6db76e28dc1b7619416"
  3787. },
  3788. "dist": {
  3789. "type": "zip",
  3790. "url": "https://api.github.com/repos/symfony/OptionsResolver/zipball/d619503992eea05eb407a6db76e28dc1b7619416",
  3791. "reference": "d619503992eea05eb407a6db76e28dc1b7619416",
  3792. "shasum": ""
  3793. },
  3794. "require": {
  3795. "php": ">=5.3.3"
  3796. },
  3797. "require-dev": {
  3798. "symfony/phpunit-bridge": "~2.7"
  3799. },
  3800. "type": "library",
  3801. "extra": {
  3802. "branch-alias": {
  3803. "dev-master": "2.6-dev"
  3804. }
  3805. },
  3806. "autoload": {
  3807. "psr-0": {
  3808. "Symfony\\Component\\OptionsResolver\\": ""
  3809. }
  3810. },
  3811. "notification-url": "https://packagist.org/downloads/",
  3812. "license": [
  3813. "MIT"
  3814. ],
  3815. "authors": [
  3816. {
  3817. "name": "Symfony Community",
  3818. "homepage": "http://symfony.com/contributors"
  3819. },
  3820. {
  3821. "name": "Fabien Potencier",
  3822. "email": "fabien@symfony.com"
  3823. }
  3824. ],
  3825. "description": "Symfony OptionsResolver Component",
  3826. "homepage": "http://symfony.com",
  3827. "keywords": [
  3828. "config",
  3829. "configuration",
  3830. "options"
  3831. ],
  3832. "time": "2015-03-13 17:37:22"
  3833. },
  3834. {
  3835. "name": "symfony/process",
  3836. "version": "v2.6.5",
  3837. "target-dir": "Symfony/Component/Process",
  3838. "source": {
  3839. "type": "git",
  3840. "url": "https://github.com/symfony/Process.git",
  3841. "reference": "4d717f34f3d1d6ab30fbe79f7132960a27f4a0dc"
  3842. },
  3843. "dist": {
  3844. "type": "zip",
  3845. "url": "https://api.github.com/repos/symfony/Process/zipball/4d717f34f3d1d6ab30fbe79f7132960a27f4a0dc",
  3846. "reference": "4d717f34f3d1d6ab30fbe79f7132960a27f4a0dc",
  3847. "shasum": ""
  3848. },
  3849. "require": {
  3850. "php": ">=5.3.3"
  3851. },
  3852. "require-dev": {
  3853. "symfony/phpunit-bridge": "~2.7"
  3854. },
  3855. "type": "library",
  3856. "extra": {
  3857. "branch-alias": {
  3858. "dev-master": "2.6-dev"
  3859. }
  3860. },
  3861. "autoload": {
  3862. "psr-0": {
  3863. "Symfony\\Component\\Process\\": ""
  3864. }
  3865. },
  3866. "notification-url": "https://packagist.org/downloads/",
  3867. "license": [
  3868. "MIT"
  3869. ],
  3870. "authors": [
  3871. {
  3872. "name": "Symfony Community",
  3873. "homepage": "http://symfony.com/contributors"
  3874. },
  3875. {
  3876. "name": "Fabien Potencier",
  3877. "email": "fabien@symfony.com"
  3878. }
  3879. ],
  3880. "description": "Symfony Process Component",
  3881. "homepage": "http://symfony.com",
  3882. "time": "2015-03-12 10:28:44"
  3883. },
  3884. {
  3885. "name": "symfony/property-access",
  3886. "version": "v2.6.5",
  3887. "target-dir": "Symfony/Component/PropertyAccess",
  3888. "source": {
  3889. "type": "git",
  3890. "url": "https://github.com/symfony/PropertyAccess.git",
  3891. "reference": "0ce73304d8acd87ab3a75155c889f9cc8ac9d28d"
  3892. },
  3893. "dist": {
  3894. "type": "zip",
  3895. "url": "https://api.github.com/repos/symfony/PropertyAccess/zipball/0ce73304d8acd87ab3a75155c889f9cc8ac9d28d",
  3896. "reference": "0ce73304d8acd87ab3a75155c889f9cc8ac9d28d",
  3897. "shasum": ""
  3898. },
  3899. "require": {
  3900. "php": ">=5.3.3"
  3901. },
  3902. "require-dev": {
  3903. "symfony/phpunit-bridge": "~2.7"
  3904. },
  3905. "type": "library",
  3906. "extra": {
  3907. "branch-alias": {
  3908. "dev-master": "2.6-dev"
  3909. }
  3910. },
  3911. "autoload": {
  3912. "psr-0": {
  3913. "Symfony\\Component\\PropertyAccess\\": ""
  3914. }
  3915. },
  3916. "notification-url": "https://packagist.org/downloads/",
  3917. "license": [
  3918. "MIT"
  3919. ],
  3920. "authors": [
  3921. {
  3922. "name": "Symfony Community",
  3923. "homepage": "http://symfony.com/contributors"
  3924. },
  3925. {
  3926. "name": "Fabien Potencier",
  3927. "email": "fabien@symfony.com"
  3928. }
  3929. ],
  3930. "description": "Symfony PropertyAccess Component",
  3931. "homepage": "http://symfony.com",
  3932. "keywords": [
  3933. "access",
  3934. "array",
  3935. "extraction",
  3936. "index",
  3937. "injection",
  3938. "object",
  3939. "property",
  3940. "property path",
  3941. "reflection"
  3942. ],
  3943. "time": "2015-03-07 07:40:15"
  3944. },
  3945. {
  3946. "name": "symfony/routing",
  3947. "version": "v2.6.5",
  3948. "target-dir": "Symfony/Component/Routing",
  3949. "source": {
  3950. "type": "git",
  3951. "url": "https://github.com/symfony/Routing.git",
  3952. "reference": "a7f3eb540e5c553c3c95993c6fc2e7edb2f3b9d2"
  3953. },
  3954. "dist": {
  3955. "type": "zip",
  3956. "url": "https://api.github.com/repos/symfony/Routing/zipball/a7f3eb540e5c553c3c95993c6fc2e7edb2f3b9d2",
  3957. "reference": "a7f3eb540e5c553c3c95993c6fc2e7edb2f3b9d2",
  3958. "shasum": ""
  3959. },
  3960. "require": {
  3961. "php": ">=5.3.3"
  3962. },
  3963. "require-dev": {
  3964. "doctrine/annotations": "~1.0",
  3965. "doctrine/common": "~2.2",
  3966. "psr/log": "~1.0",
  3967. "symfony/config": "~2.2",
  3968. "symfony/expression-language": "~2.4",
  3969. "symfony/http-foundation": "~2.3",
  3970. "symfony/phpunit-bridge": "~2.7",
  3971. "symfony/yaml": "~2.0,>=2.0.5"
  3972. },
  3973. "suggest": {
  3974. "doctrine/annotations": "For using the annotation loader",
  3975. "symfony/config": "For using the all-in-one router or any loader",
  3976. "symfony/expression-language": "For using expression matching",
  3977. "symfony/yaml": "For using the YAML loader"
  3978. },
  3979. "type": "library",
  3980. "extra": {
  3981. "branch-alias": {
  3982. "dev-master": "2.6-dev"
  3983. }
  3984. },
  3985. "autoload": {
  3986. "psr-0": {
  3987. "Symfony\\Component\\Routing\\": ""
  3988. }
  3989. },
  3990. "notification-url": "https://packagist.org/downloads/",
  3991. "license": [
  3992. "MIT"
  3993. ],
  3994. "authors": [
  3995. {
  3996. "name": "Symfony Community",
  3997. "homepage": "http://symfony.com/contributors"
  3998. },
  3999. {
  4000. "name": "Fabien Potencier",
  4001. "email": "fabien@symfony.com"
  4002. }
  4003. ],
  4004. "description": "Symfony Routing Component",
  4005. "homepage": "http://symfony.com",
  4006. "keywords": [
  4007. "router",
  4008. "routing",
  4009. "uri",
  4010. "url"
  4011. ],
  4012. "time": "2015-03-13 17:37:22"
  4013. },
  4014. {
  4015. "name": "symfony/security",
  4016. "version": "v2.6.5",
  4017. "target-dir": "Symfony/Component/Security",
  4018. "source": {
  4019. "type": "git",
  4020. "url": "https://github.com/symfony/Security.git",
  4021. "reference": "33c79de444fd031ff45425e7007f56677c3ff11f"
  4022. },
  4023. "dist": {
  4024. "type": "zip",
  4025. "url": "https://api.github.com/repos/symfony/Security/zipball/33c79de444fd031ff45425e7007f56677c3ff11f",
  4026. "reference": "33c79de444fd031ff45425e7007f56677c3ff11f",
  4027. "shasum": ""
  4028. },
  4029. "require": {
  4030. "php": ">=5.3.3",
  4031. "symfony/event-dispatcher": "~2.2",
  4032. "symfony/http-foundation": "~2.1",
  4033. "symfony/http-kernel": "~2.4"
  4034. },
  4035. "replace": {
  4036. "symfony/security-acl": "self.version",
  4037. "symfony/security-core": "self.version",
  4038. "symfony/security-csrf": "self.version",
  4039. "symfony/security-http": "self.version"
  4040. },
  4041. "require-dev": {
  4042. "doctrine/common": "~2.2",
  4043. "doctrine/dbal": "~2.2",
  4044. "ircmaxell/password-compat": "~1.0",
  4045. "psr/log": "~1.0",
  4046. "symfony/expression-language": "~2.6",
  4047. "symfony/intl": "~2.3",
  4048. "symfony/phpunit-bridge": "~2.7",
  4049. "symfony/routing": "~2.2",
  4050. "symfony/translation": "~2.0,>=2.0.5",
  4051. "symfony/validator": "~2.5,>=2.5.5"
  4052. },
  4053. "suggest": {
  4054. "doctrine/dbal": "For using the built-in ACL implementation",
  4055. "ircmaxell/password-compat": "For using the BCrypt password encoder in PHP <5.5",
  4056. "symfony/class-loader": "For using the ACL generateSql script",
  4057. "symfony/expression-language": "For using the expression voter",
  4058. "symfony/finder": "For using the ACL generateSql script",
  4059. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  4060. "symfony/validator": "For using the user password constraint"
  4061. },
  4062. "type": "library",
  4063. "extra": {
  4064. "branch-alias": {
  4065. "dev-master": "2.6-dev"
  4066. }
  4067. },
  4068. "autoload": {
  4069. "psr-0": {
  4070. "Symfony\\Component\\Security\\": ""
  4071. }
  4072. },
  4073. "notification-url": "https://packagist.org/downloads/",
  4074. "license": [
  4075. "MIT"
  4076. ],
  4077. "authors": [
  4078. {
  4079. "name": "Symfony Community",
  4080. "homepage": "http://symfony.com/contributors"
  4081. },
  4082. {
  4083. "name": "Fabien Potencier",
  4084. "email": "fabien@symfony.com"
  4085. }
  4086. ],
  4087. "description": "Symfony Security Component",
  4088. "homepage": "http://symfony.com",
  4089. "time": "2015-03-13 17:37:22"
  4090. },
  4091. {
  4092. "name": "symfony/security-bundle",
  4093. "version": "v2.6.5",
  4094. "target-dir": "Symfony/Bundle/SecurityBundle",
  4095. "source": {
  4096. "type": "git",
  4097. "url": "https://github.com/symfony/SecurityBundle.git",
  4098. "reference": "8f0fafeafbdb479a5c39e799771d1822d260fe3b"
  4099. },
  4100. "dist": {
  4101. "type": "zip",
  4102. "url": "https://api.github.com/repos/symfony/SecurityBundle/zipball/8f0fafeafbdb479a5c39e799771d1822d260fe3b",
  4103. "reference": "8f0fafeafbdb479a5c39e799771d1822d260fe3b",
  4104. "shasum": ""
  4105. },
  4106. "require": {
  4107. "php": ">=5.3.3",
  4108. "symfony/http-kernel": "~2.2",
  4109. "symfony/security": "~2.6"
  4110. },
  4111. "require-dev": {
  4112. "doctrine/doctrine-bundle": "~1.2",
  4113. "symfony/browser-kit": "~2.4",
  4114. "symfony/console": "~2.3",
  4115. "symfony/css-selector": "~2.0,>=2.0.5",
  4116. "symfony/dependency-injection": "~2.3",
  4117. "symfony/dom-crawler": "~2.0,>=2.0.5",
  4118. "symfony/expression-language": "~2.6",
  4119. "symfony/form": "~2.4",
  4120. "symfony/framework-bundle": "~2.6",
  4121. "symfony/http-foundation": "~2.3",
  4122. "symfony/phpunit-bridge": "~2.7",
  4123. "symfony/process": "~2.0,>=2.0.5",
  4124. "symfony/twig-bridge": "~2.2,>=2.2.6",
  4125. "symfony/twig-bundle": "~2.2",
  4126. "symfony/validator": "~2.5",
  4127. "symfony/yaml": "~2.0,>=2.0.5",
  4128. "twig/twig": "~1.12"
  4129. },
  4130. "type": "symfony-bundle",
  4131. "extra": {
  4132. "branch-alias": {
  4133. "dev-master": "2.6-dev"
  4134. }
  4135. },
  4136. "autoload": {
  4137. "psr-0": {
  4138. "Symfony\\Bundle\\SecurityBundle\\": ""
  4139. }
  4140. },
  4141. "notification-url": "https://packagist.org/downloads/",
  4142. "license": [
  4143. "MIT"
  4144. ],
  4145. "authors": [
  4146. {
  4147. "name": "Symfony Community",
  4148. "homepage": "http://symfony.com/contributors"
  4149. },
  4150. {
  4151. "name": "Fabien Potencier",
  4152. "email": "fabien@symfony.com"
  4153. }
  4154. ],
  4155. "description": "Symfony SecurityBundle",
  4156. "homepage": "http://symfony.com",
  4157. "time": "2015-03-14 05:08:39"
  4158. },
  4159. {
  4160. "name": "symfony/stopwatch",
  4161. "version": "v2.6.5",
  4162. "target-dir": "Symfony/Component/Stopwatch",
  4163. "source": {
  4164. "type": "git",
  4165. "url": "https://github.com/symfony/Stopwatch.git",
  4166. "reference": "ba4e774f71e2ce3e3f65cabac4031b9029972af5"
  4167. },
  4168. "dist": {
  4169. "type": "zip",
  4170. "url": "https://api.github.com/repos/symfony/Stopwatch/zipball/ba4e774f71e2ce3e3f65cabac4031b9029972af5",
  4171. "reference": "ba4e774f71e2ce3e3f65cabac4031b9029972af5",
  4172. "shasum": ""
  4173. },
  4174. "require": {
  4175. "php": ">=5.3.3"
  4176. },
  4177. "require-dev": {
  4178. "symfony/phpunit-bridge": "~2.7"
  4179. },
  4180. "type": "library",
  4181. "extra": {
  4182. "branch-alias": {
  4183. "dev-master": "2.6-dev"
  4184. }
  4185. },
  4186. "autoload": {
  4187. "psr-0": {
  4188. "Symfony\\Component\\Stopwatch\\": ""
  4189. }
  4190. },
  4191. "notification-url": "https://packagist.org/downloads/",
  4192. "license": [
  4193. "MIT"
  4194. ],
  4195. "authors": [
  4196. {
  4197. "name": "Symfony Community",
  4198. "homepage": "http://symfony.com/contributors"
  4199. },
  4200. {
  4201. "name": "Fabien Potencier",
  4202. "email": "fabien@symfony.com"
  4203. }
  4204. ],
  4205. "description": "Symfony Stopwatch Component",
  4206. "homepage": "http://symfony.com",
  4207. "time": "2015-02-24 11:52:21"
  4208. },
  4209. {
  4210. "name": "symfony/templating",
  4211. "version": "v2.6.5",
  4212. "target-dir": "Symfony/Component/Templating",
  4213. "source": {
  4214. "type": "git",
  4215. "url": "https://github.com/symfony/Templating.git",
  4216. "reference": "bc4879a794c1fa51fd7bd4bbc5bea33b7071b776"
  4217. },
  4218. "dist": {
  4219. "type": "zip",
  4220. "url": "https://api.github.com/repos/symfony/Templating/zipball/bc4879a794c1fa51fd7bd4bbc5bea33b7071b776",
  4221. "reference": "bc4879a794c1fa51fd7bd4bbc5bea33b7071b776",
  4222. "shasum": ""
  4223. },
  4224. "require": {
  4225. "php": ">=5.3.3"
  4226. },
  4227. "require-dev": {
  4228. "psr/log": "~1.0",
  4229. "symfony/phpunit-bridge": "~2.7"
  4230. },
  4231. "suggest": {
  4232. "psr/log": "For using debug logging in loaders"
  4233. },
  4234. "type": "library",
  4235. "extra": {
  4236. "branch-alias": {
  4237. "dev-master": "2.6-dev"
  4238. }
  4239. },
  4240. "autoload": {
  4241. "psr-0": {
  4242. "Symfony\\Component\\Templating\\": ""
  4243. }
  4244. },
  4245. "notification-url": "https://packagist.org/downloads/",
  4246. "license": [
  4247. "MIT"
  4248. ],
  4249. "authors": [
  4250. {
  4251. "name": "Symfony Community",
  4252. "homepage": "http://symfony.com/contributors"
  4253. },
  4254. {
  4255. "name": "Fabien Potencier",
  4256. "email": "fabien@symfony.com"
  4257. }
  4258. ],
  4259. "description": "Symfony Templating Component",
  4260. "homepage": "http://symfony.com",
  4261. "time": "2015-03-13 17:37:22"
  4262. },
  4263. {
  4264. "name": "symfony/translation",
  4265. "version": "v2.6.5",
  4266. "target-dir": "Symfony/Component/Translation",
  4267. "source": {
  4268. "type": "git",
  4269. "url": "https://github.com/symfony/Translation.git",
  4270. "reference": "043db5f1eef9598d1bc1d75b93304984c003d7d9"
  4271. },
  4272. "dist": {
  4273. "type": "zip",
  4274. "url": "https://api.github.com/repos/symfony/Translation/zipball/043db5f1eef9598d1bc1d75b93304984c003d7d9",
  4275. "reference": "043db5f1eef9598d1bc1d75b93304984c003d7d9",
  4276. "shasum": ""
  4277. },
  4278. "require": {
  4279. "php": ">=5.3.3"
  4280. },
  4281. "require-dev": {
  4282. "psr/log": "~1.0",
  4283. "symfony/config": "~2.3,>=2.3.12",
  4284. "symfony/intl": "~2.3",
  4285. "symfony/phpunit-bridge": "~2.7",
  4286. "symfony/yaml": "~2.2"
  4287. },
  4288. "suggest": {
  4289. "psr/log": "To use logging capability in translator",
  4290. "symfony/config": "",
  4291. "symfony/yaml": ""
  4292. },
  4293. "type": "library",
  4294. "extra": {
  4295. "branch-alias": {
  4296. "dev-master": "2.6-dev"
  4297. }
  4298. },
  4299. "autoload": {
  4300. "psr-0": {
  4301. "Symfony\\Component\\Translation\\": ""
  4302. }
  4303. },
  4304. "notification-url": "https://packagist.org/downloads/",
  4305. "license": [
  4306. "MIT"
  4307. ],
  4308. "authors": [
  4309. {
  4310. "name": "Symfony Community",
  4311. "homepage": "http://symfony.com/contributors"
  4312. },
  4313. {
  4314. "name": "Fabien Potencier",
  4315. "email": "fabien@symfony.com"
  4316. }
  4317. ],
  4318. "description": "Symfony Translation Component",
  4319. "homepage": "http://symfony.com",
  4320. "time": "2015-03-14 11:42:25"
  4321. },
  4322. {
  4323. "name": "symfony/twig-bridge",
  4324. "version": "v2.6.5",
  4325. "target-dir": "Symfony/Bridge/Twig",
  4326. "source": {
  4327. "type": "git",
  4328. "url": "https://github.com/symfony/TwigBridge.git",
  4329. "reference": "4315490bf54152a587f785a428d3afcf0e98a7ec"
  4330. },
  4331. "dist": {
  4332. "type": "zip",
  4333. "url": "https://api.github.com/repos/symfony/TwigBridge/zipball/4315490bf54152a587f785a428d3afcf0e98a7ec",
  4334. "reference": "4315490bf54152a587f785a428d3afcf0e98a7ec",
  4335. "shasum": ""
  4336. },
  4337. "require": {
  4338. "php": ">=5.3.3",
  4339. "twig/twig": "~1.13,>=1.13.1"
  4340. },
  4341. "require-dev": {
  4342. "symfony/console": "~2.4",
  4343. "symfony/expression-language": "~2.4",
  4344. "symfony/finder": "~2.3",
  4345. "symfony/form": "~2.6",
  4346. "symfony/http-kernel": "~2.3",
  4347. "symfony/intl": "~2.3",
  4348. "symfony/phpunit-bridge": "~2.7",
  4349. "symfony/routing": "~2.2",
  4350. "symfony/security": "~2.4",
  4351. "symfony/stopwatch": "~2.2",
  4352. "symfony/templating": "~2.1",
  4353. "symfony/translation": "~2.2",
  4354. "symfony/var-dumper": "~2.6",
  4355. "symfony/yaml": "~2.0,>=2.0.5"
  4356. },
  4357. "suggest": {
  4358. "symfony/expression-language": "For using the ExpressionExtension",
  4359. "symfony/finder": "",
  4360. "symfony/form": "For using the FormExtension",
  4361. "symfony/http-kernel": "For using the HttpKernelExtension",
  4362. "symfony/routing": "For using the RoutingExtension",
  4363. "symfony/security": "For using the SecurityExtension",
  4364. "symfony/stopwatch": "For using the StopwatchExtension",
  4365. "symfony/templating": "For using the TwigEngine",
  4366. "symfony/translation": "For using the TranslationExtension",
  4367. "symfony/var-dumper": "For using the DumpExtension",
  4368. "symfony/yaml": "For using the YamlExtension"
  4369. },
  4370. "type": "symfony-bridge",
  4371. "extra": {
  4372. "branch-alias": {
  4373. "dev-master": "2.6-dev"
  4374. }
  4375. },
  4376. "autoload": {
  4377. "psr-0": {
  4378. "Symfony\\Bridge\\Twig\\": ""
  4379. }
  4380. },
  4381. "notification-url": "https://packagist.org/downloads/",
  4382. "license": [
  4383. "MIT"
  4384. ],
  4385. "authors": [
  4386. {
  4387. "name": "Symfony Community",
  4388. "homepage": "http://symfony.com/contributors"
  4389. },
  4390. {
  4391. "name": "Fabien Potencier",
  4392. "email": "fabien@symfony.com"
  4393. }
  4394. ],
  4395. "description": "Symfony Twig Bridge",
  4396. "homepage": "http://symfony.com",
  4397. "time": "2015-03-13 09:50:03"
  4398. },
  4399. {
  4400. "name": "symfony/twig-bundle",
  4401. "version": "v2.6.5",
  4402. "target-dir": "Symfony/Bundle/TwigBundle",
  4403. "source": {
  4404. "type": "git",
  4405. "url": "https://github.com/symfony/TwigBundle.git",
  4406. "reference": "fcbb690d7ec1aa44209b84f2a03a9642ae6c26c6"
  4407. },
  4408. "dist": {
  4409. "type": "zip",
  4410. "url": "https://api.github.com/repos/symfony/TwigBundle/zipball/fcbb690d7ec1aa44209b84f2a03a9642ae6c26c6",
  4411. "reference": "fcbb690d7ec1aa44209b84f2a03a9642ae6c26c6",
  4412. "shasum": ""
  4413. },
  4414. "require": {
  4415. "php": ">=5.3.3",
  4416. "symfony/http-foundation": "~2.5",
  4417. "symfony/http-kernel": "~2.3.24|~2.5.9|~2.6,>=2.6.2",
  4418. "symfony/twig-bridge": "~2.6"
  4419. },
  4420. "require-dev": {
  4421. "symfony/config": "~2.2",
  4422. "symfony/dependency-injection": "~2.2",
  4423. "symfony/expression-language": "~2.4",
  4424. "symfony/framework-bundle": "~2.1",
  4425. "symfony/phpunit-bridge": "~2.7",
  4426. "symfony/routing": "~2.1",
  4427. "symfony/stopwatch": "~2.2",
  4428. "symfony/templating": "~2.1"
  4429. },
  4430. "type": "symfony-bundle",
  4431. "extra": {
  4432. "branch-alias": {
  4433. "dev-master": "2.6-dev"
  4434. }
  4435. },
  4436. "autoload": {
  4437. "psr-0": {
  4438. "Symfony\\Bundle\\TwigBundle\\": ""
  4439. }
  4440. },
  4441. "notification-url": "https://packagist.org/downloads/",
  4442. "license": [
  4443. "MIT"
  4444. ],
  4445. "authors": [
  4446. {
  4447. "name": "Symfony Community",
  4448. "homepage": "http://symfony.com/contributors"
  4449. },
  4450. {
  4451. "name": "Fabien Potencier",
  4452. "email": "fabien@symfony.com"
  4453. }
  4454. ],
  4455. "description": "Symfony TwigBundle",
  4456. "homepage": "http://symfony.com",
  4457. "time": "2015-03-13 17:11:24"
  4458. },
  4459. {
  4460. "name": "symfony/validator",
  4461. "version": "v2.6.4",
  4462. "target-dir": "Symfony/Component/Validator",
  4463. "source": {
  4464. "type": "git",
  4465. "url": "https://github.com/symfony/Validator.git",
  4466. "reference": "1906eb78a5049b41a80094c20faf66dfbaaf2049"
  4467. },
  4468. "dist": {
  4469. "type": "zip",
  4470. "url": "https://api.github.com/repos/symfony/Validator/zipball/1906eb78a5049b41a80094c20faf66dfbaaf2049",
  4471. "reference": "1906eb78a5049b41a80094c20faf66dfbaaf2049",
  4472. "shasum": ""
  4473. },
  4474. "require": {
  4475. "php": ">=5.3.3",
  4476. "symfony/translation": "~2.0,>=2.0.5"
  4477. },
  4478. "require-dev": {
  4479. "doctrine/annotations": "~1.0",
  4480. "doctrine/cache": "~1.0",
  4481. "doctrine/common": "~2.3",
  4482. "egulias/email-validator": "~1.2,>=1.2.1",
  4483. "symfony/config": "~2.2",
  4484. "symfony/expression-language": "~2.4",
  4485. "symfony/http-foundation": "~2.1",
  4486. "symfony/intl": "~2.3",
  4487. "symfony/property-access": "~2.3",
  4488. "symfony/yaml": "~2.0,>=2.0.5"
  4489. },
  4490. "suggest": {
  4491. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  4492. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  4493. "egulias/email-validator": "Strict (RFC compliant) email validation",
  4494. "symfony/config": "",
  4495. "symfony/expression-language": "For using the 2.4 Expression validator",
  4496. "symfony/http-foundation": "",
  4497. "symfony/intl": "",
  4498. "symfony/property-access": "For using the 2.4 Validator API",
  4499. "symfony/yaml": ""
  4500. },
  4501. "type": "library",
  4502. "extra": {
  4503. "branch-alias": {
  4504. "dev-master": "2.6-dev"
  4505. }
  4506. },
  4507. "autoload": {
  4508. "psr-0": {
  4509. "Symfony\\Component\\Validator\\": ""
  4510. }
  4511. },
  4512. "notification-url": "https://packagist.org/downloads/",
  4513. "license": [
  4514. "MIT"
  4515. ],
  4516. "authors": [
  4517. {
  4518. "name": "Symfony Community",
  4519. "homepage": "http://symfony.com/contributors"
  4520. },
  4521. {
  4522. "name": "Fabien Potencier",
  4523. "email": "fabien@symfony.com"
  4524. }
  4525. ],
  4526. "description": "Symfony Validator Component",
  4527. "homepage": "http://symfony.com",
  4528. "time": "2015-02-01 16:10:57"
  4529. },
  4530. {
  4531. "name": "symfony/yaml",
  4532. "version": "v2.6.5",
  4533. "target-dir": "Symfony/Component/Yaml",
  4534. "source": {
  4535. "type": "git",
  4536. "url": "https://github.com/symfony/Yaml.git",
  4537. "reference": "0cd8e72071e46e15fc072270ae39ea1b66b10a9d"
  4538. },
  4539. "dist": {
  4540. "type": "zip",
  4541. "url": "https://api.github.com/repos/symfony/Yaml/zipball/0cd8e72071e46e15fc072270ae39ea1b66b10a9d",
  4542. "reference": "0cd8e72071e46e15fc072270ae39ea1b66b10a9d",
  4543. "shasum": ""
  4544. },
  4545. "require": {
  4546. "php": ">=5.3.3"
  4547. },
  4548. "require-dev": {
  4549. "symfony/phpunit-bridge": "~2.7"
  4550. },
  4551. "type": "library",
  4552. "extra": {
  4553. "branch-alias": {
  4554. "dev-master": "2.6-dev"
  4555. }
  4556. },
  4557. "autoload": {
  4558. "psr-0": {
  4559. "Symfony\\Component\\Yaml\\": ""
  4560. }
  4561. },
  4562. "notification-url": "https://packagist.org/downloads/",
  4563. "license": [
  4564. "MIT"
  4565. ],
  4566. "authors": [
  4567. {
  4568. "name": "Symfony Community",
  4569. "homepage": "http://symfony.com/contributors"
  4570. },
  4571. {
  4572. "name": "Fabien Potencier",
  4573. "email": "fabien@symfony.com"
  4574. }
  4575. ],
  4576. "description": "Symfony Yaml Component",
  4577. "homepage": "http://symfony.com",
  4578. "time": "2015-03-12 10:28:44"
  4579. },
  4580. {
  4581. "name": "szymach/c-pchart",
  4582. "version": "1.1.5",
  4583. "source": {
  4584. "type": "git",
  4585. "url": "https://github.com/szymach/c-pchart.git",
  4586. "reference": "1d54c14f8b7295abc87039ba806fed45d29d67d9"
  4587. },
  4588. "dist": {
  4589. "type": "zip",
  4590. "url": "https://api.github.com/repos/szymach/c-pchart/zipball/1d54c14f8b7295abc87039ba806fed45d29d67d9",
  4591. "reference": "1d54c14f8b7295abc87039ba806fed45d29d67d9",
  4592. "shasum": ""
  4593. },
  4594. "require": {
  4595. "ext-gd": "*",
  4596. "php": ">=5.3.3"
  4597. },
  4598. "type": "project",
  4599. "autoload": {
  4600. "psr-4": {
  4601. "CpChart\\": "src/"
  4602. },
  4603. "files": [
  4604. "src/Resources/data/constants.php"
  4605. ]
  4606. },
  4607. "notification-url": "https://packagist.org/downloads/",
  4608. "license": [
  4609. "MIT"
  4610. ],
  4611. "description": "Port of \"pChart\" library into PHP 5.3.",
  4612. "homepage": "https://github.com/szymach/c-pchart",
  4613. "keywords": [
  4614. "c-pChart",
  4615. "charts",
  4616. "composer",
  4617. "pchart",
  4618. "statistics"
  4619. ],
  4620. "time": "2015-01-28 19:54:53"
  4621. },
  4622. {
  4623. "name": "toin0u/digitalocean",
  4624. "version": "1.4.2",
  4625. "source": {
  4626. "type": "git",
  4627. "url": "https://github.com/toin0u/DigitalOcean.git",
  4628. "reference": "fb460785207fa4029217eef489508b9ed6c61b00"
  4629. },
  4630. "dist": {
  4631. "type": "zip",
  4632. "url": "https://api.github.com/repos/toin0u/DigitalOcean/zipball/fb460785207fa4029217eef489508b9ed6c61b00",
  4633. "reference": "fb460785207fa4029217eef489508b9ed6c61b00",
  4634. "shasum": ""
  4635. },
  4636. "require": {
  4637. "php": ">=5.3.0",
  4638. "symfony/console": "~2.3",
  4639. "symfony/yaml": "~2.3",
  4640. "toin0u/http-adapter": "~1.0"
  4641. },
  4642. "require-dev": {
  4643. "satooshi/php-coveralls": "~0.6"
  4644. },
  4645. "bin": [
  4646. "digitalocean"
  4647. ],
  4648. "type": "library",
  4649. "extra": {
  4650. "branch-alias": {
  4651. "dev-master": "1.4-dev"
  4652. }
  4653. },
  4654. "autoload": {
  4655. "psr-0": {
  4656. "DigitalOcean": "src/"
  4657. }
  4658. },
  4659. "notification-url": "https://packagist.org/downloads/",
  4660. "license": [
  4661. "MIT"
  4662. ],
  4663. "authors": [
  4664. {
  4665. "name": "Antoine Corcy",
  4666. "email": "contact@sbin.dk",
  4667. "homepage": "http://sbin.dk",
  4668. "role": "Developer"
  4669. }
  4670. ],
  4671. "description": "DigitalOcean API PHP 5.3+ library",
  4672. "homepage": "https://github.com/toin0u/DigitalOcean",
  4673. "keywords": [
  4674. "Cloud Hosting",
  4675. "SSD",
  4676. "api",
  4677. "digitalocean",
  4678. "vps"
  4679. ],
  4680. "time": "2014-01-14 22:20:56"
  4681. },
  4682. {
  4683. "name": "toin0u/http-adapter",
  4684. "version": "1.0.3",
  4685. "source": {
  4686. "type": "git",
  4687. "url": "https://github.com/toin0u/HttpAdapter.git",
  4688. "reference": "29253948d446bc3afc29897ac67b4cd01f56cd10"
  4689. },
  4690. "dist": {
  4691. "type": "zip",
  4692. "url": "https://api.github.com/repos/toin0u/HttpAdapter/zipball/29253948d446bc3afc29897ac67b4cd01f56cd10",
  4693. "reference": "29253948d446bc3afc29897ac67b4cd01f56cd10",
  4694. "shasum": ""
  4695. },
  4696. "require": {
  4697. "ext-curl": "*",
  4698. "php": ">=5.3.0"
  4699. },
  4700. "require-dev": {
  4701. "guzzle/guzzle": "@stable",
  4702. "kriswallsmith/buzz": "@stable",
  4703. "satooshi/php-coveralls": "~0.6",
  4704. "zendframework/zendframework": "~2.1"
  4705. },
  4706. "suggest": {
  4707. "guzzle/guzzle": "Enabling Guzzle allows you to use the GuzzleHttpAdapter",
  4708. "kriswallsmith/buzz": "Enabling Buzz allows you to use the BuzzHttpAdapter",
  4709. "zendframework/zendframework": "Enabling Zend Http allows you to use the ZendHttpAdapter"
  4710. },
  4711. "type": "library",
  4712. "extra": {
  4713. "branch-alias": {
  4714. "dev-master": "1.0-dev"
  4715. }
  4716. },
  4717. "autoload": {
  4718. "psr-0": {
  4719. "HttpAdapter": "src/"
  4720. }
  4721. },
  4722. "notification-url": "https://packagist.org/downloads/",
  4723. "license": [
  4724. "MIT"
  4725. ],
  4726. "authors": [
  4727. {
  4728. "name": "Antoine Corcy",
  4729. "email": "contact@sbin.dk",
  4730. "homepage": "http://sbin.dk",
  4731. "role": "Developer"
  4732. }
  4733. ],
  4734. "description": "HttpAdapter PHP 5.3+ library",
  4735. "homepage": "https://github.com/toin0u/HttpAdapter",
  4736. "keywords": [
  4737. "adapter",
  4738. "http"
  4739. ],
  4740. "time": "2013-05-26 18:18:11"
  4741. },
  4742. {
  4743. "name": "twig/extensions",
  4744. "version": "v1.2.0",
  4745. "source": {
  4746. "type": "git",
  4747. "url": "https://github.com/twigphp/Twig-extensions.git",
  4748. "reference": "8cf4b9fe04077bd54fc73f4fde83347040c3b8cd"
  4749. },
  4750. "dist": {
  4751. "type": "zip",
  4752. "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/8cf4b9fe04077bd54fc73f4fde83347040c3b8cd",
  4753. "reference": "8cf4b9fe04077bd54fc73f4fde83347040c3b8cd",
  4754. "shasum": ""
  4755. },
  4756. "require": {
  4757. "twig/twig": "~1.12"
  4758. },
  4759. "require-dev": {
  4760. "symfony/translation": "~2.3"
  4761. },
  4762. "suggest": {
  4763. "symfony/translation": "Allow the time_diff output to be translated"
  4764. },
  4765. "type": "library",
  4766. "extra": {
  4767. "branch-alias": {
  4768. "dev-master": "1.2.x-dev"
  4769. }
  4770. },
  4771. "autoload": {
  4772. "psr-0": {
  4773. "Twig_Extensions_": "lib/"
  4774. }
  4775. },
  4776. "notification-url": "https://packagist.org/downloads/",
  4777. "license": [
  4778. "MIT"
  4779. ],
  4780. "authors": [
  4781. {
  4782. "name": "Fabien Potencier",
  4783. "email": "fabien@symfony.com"
  4784. }
  4785. ],
  4786. "description": "Common additional features for Twig that do not directly belong in core",
  4787. "homepage": "http://twig.sensiolabs.org/doc/extensions/index.html",
  4788. "keywords": [
  4789. "i18n",
  4790. "text"
  4791. ],
  4792. "time": "2014-10-30 14:30:03"
  4793. },
  4794. {
  4795. "name": "twig/twig",
  4796. "version": "v1.18.0",
  4797. "source": {
  4798. "type": "git",
  4799. "url": "https://github.com/twigphp/Twig.git",
  4800. "reference": "4cf7464348e7f9893a93f7096a90b73722be99cf"
  4801. },
  4802. "dist": {
  4803. "type": "zip",
  4804. "url": "https://api.github.com/repos/twigphp/Twig/zipball/4cf7464348e7f9893a93f7096a90b73722be99cf",
  4805. "reference": "4cf7464348e7f9893a93f7096a90b73722be99cf",
  4806. "shasum": ""
  4807. },
  4808. "require": {
  4809. "php": ">=5.2.4"
  4810. },
  4811. "type": "library",
  4812. "extra": {
  4813. "branch-alias": {
  4814. "dev-master": "1.18-dev"
  4815. }
  4816. },
  4817. "autoload": {
  4818. "psr-0": {
  4819. "Twig_": "lib/"
  4820. }
  4821. },
  4822. "notification-url": "https://packagist.org/downloads/",
  4823. "license": [
  4824. "BSD-3-Clause"
  4825. ],
  4826. "authors": [
  4827. {
  4828. "name": "Fabien Potencier",
  4829. "email": "fabien@symfony.com",
  4830. "homepage": "http://fabien.potencier.org",
  4831. "role": "Lead Developer"
  4832. },
  4833. {
  4834. "name": "Armin Ronacher",
  4835. "email": "armin.ronacher@active-4.com",
  4836. "role": "Project Founder"
  4837. },
  4838. {
  4839. "name": "Twig Team",
  4840. "homepage": "http://twig.sensiolabs.org/contributors",
  4841. "role": "Contributors"
  4842. }
  4843. ],
  4844. "description": "Twig, the flexible, fast, and secure template language for PHP",
  4845. "homepage": "http://twig.sensiolabs.org",
  4846. "keywords": [
  4847. "templating"
  4848. ],
  4849. "time": "2015-01-25 17:32:08"
  4850. },
  4851. {
  4852. "name": "willdurand/jsonp-callback-validator",
  4853. "version": "v1.1.0",
  4854. "source": {
  4855. "type": "git",
  4856. "url": "https://github.com/willdurand/JsonpCallbackValidator.git",
  4857. "reference": "1a7d388bb521959e612ef50c5c7b1691b097e909"
  4858. },
  4859. "dist": {
  4860. "type": "zip",
  4861. "url": "https://api.github.com/repos/willdurand/JsonpCallbackValidator/zipball/1a7d388bb521959e612ef50c5c7b1691b097e909",
  4862. "reference": "1a7d388bb521959e612ef50c5c7b1691b097e909",
  4863. "shasum": ""
  4864. },
  4865. "require": {
  4866. "php": ">=5.3.0"
  4867. },
  4868. "require-dev": {
  4869. "phpunit/phpunit": "~3.7"
  4870. },
  4871. "type": "library",
  4872. "autoload": {
  4873. "psr-0": {
  4874. "JsonpCallbackValidator": "src/"
  4875. }
  4876. },
  4877. "notification-url": "https://packagist.org/downloads/",
  4878. "license": [
  4879. "MIT"
  4880. ],
  4881. "authors": [
  4882. {
  4883. "name": "William Durand",
  4884. "email": "william.durand1@gmail.com",
  4885. "homepage": "http://www.willdurand.fr"
  4886. }
  4887. ],
  4888. "description": "JSONP callback validator.",
  4889. "time": "2014-01-20 22:35:06"
  4890. },
  4891. {
  4892. "name": "willdurand/negotiation",
  4893. "version": "1.3.4",
  4894. "source": {
  4895. "type": "git",
  4896. "url": "https://github.com/willdurand/Negotiation.git",
  4897. "reference": "d7fa4ce4a0436915b9ba9f7cb5ff37719f0a834c"
  4898. },
  4899. "dist": {
  4900. "type": "zip",
  4901. "url": "https://api.github.com/repos/willdurand/Negotiation/zipball/d7fa4ce4a0436915b9ba9f7cb5ff37719f0a834c",
  4902. "reference": "d7fa4ce4a0436915b9ba9f7cb5ff37719f0a834c",
  4903. "shasum": ""
  4904. },
  4905. "require": {
  4906. "php": ">=5.3.0"
  4907. },
  4908. "type": "library",
  4909. "extra": {
  4910. "branch-alias": {
  4911. "dev-master": "1.3-dev"
  4912. }
  4913. },
  4914. "autoload": {
  4915. "psr-0": {
  4916. "Negotiation": "src/"
  4917. }
  4918. },
  4919. "notification-url": "https://packagist.org/downloads/",
  4920. "license": [
  4921. "MIT"
  4922. ],
  4923. "authors": [
  4924. {
  4925. "name": "William Durand",
  4926. "email": "william.durand1@gmail.com"
  4927. }
  4928. ],
  4929. "description": "Content Negotiation tools for PHP provided as a standalone library.",
  4930. "homepage": "http://williamdurand.fr/Negotiation/",
  4931. "keywords": [
  4932. "accept",
  4933. "content",
  4934. "format",
  4935. "header",
  4936. "negotiation"
  4937. ],
  4938. "time": "2014-10-02 07:26:00"
  4939. },
  4940. {
  4941. "name": "zendframework/zend-config",
  4942. "version": "2.3.3",
  4943. "target-dir": "Zend/Config",
  4944. "source": {
  4945. "type": "git",
  4946. "url": "https://github.com/zendframework/Component_ZendConfig.git",
  4947. "reference": "a9ad512e1482461a5b500ee3fcf2d06ec9c7c7e8"
  4948. },
  4949. "dist": {
  4950. "type": "zip",
  4951. "url": "https://api.github.com/repos/zendframework/Component_ZendConfig/zipball/a9ad512e1482461a5b500ee3fcf2d06ec9c7c7e8",
  4952. "reference": "a9ad512e1482461a5b500ee3fcf2d06ec9c7c7e8",
  4953. "shasum": ""
  4954. },
  4955. "require": {
  4956. "php": ">=5.3.23",
  4957. "zendframework/zend-stdlib": "self.version"
  4958. },
  4959. "require-dev": {
  4960. "zendframework/zend-filter": "self.version",
  4961. "zendframework/zend-i18n": "self.version",
  4962. "zendframework/zend-json": "self.version",
  4963. "zendframework/zend-servicemanager": "self.version"
  4964. },
  4965. "suggest": {
  4966. "zendframework/zend-filter": "Zend\\Filter component",
  4967. "zendframework/zend-i18n": "Zend\\I18n component",
  4968. "zendframework/zend-json": "Zend\\Json to use the Json reader or writer classes",
  4969. "zendframework/zend-servicemanager": "Zend\\ServiceManager for use with the Config Factory to retrieve reader and writer instances"
  4970. },
  4971. "type": "library",
  4972. "extra": {
  4973. "branch-alias": {
  4974. "dev-master": "2.3-dev",
  4975. "dev-develop": "2.4-dev"
  4976. }
  4977. },
  4978. "autoload": {
  4979. "psr-0": {
  4980. "Zend\\Config\\": ""
  4981. }
  4982. },
  4983. "notification-url": "https://packagist.org/downloads/",
  4984. "license": [
  4985. "BSD-3-Clause"
  4986. ],
  4987. "description": "provides a nested object property based user interface for accessing this configuration data within application code",
  4988. "homepage": "https://github.com/zendframework/zf2",
  4989. "keywords": [
  4990. "config",
  4991. "zf2"
  4992. ],
  4993. "time": "2014-09-16 22:58:11"
  4994. },
  4995. {
  4996. "name": "zendframework/zend-stdlib",
  4997. "version": "2.3.3",
  4998. "target-dir": "Zend/Stdlib",
  4999. "source": {
  5000. "type": "git",
  5001. "url": "https://github.com/zendframework/Component_ZendStdlib.git",
  5002. "reference": "fa33e6647f830d0d2a1cb451efcdfe1bb9a66c33"
  5003. },
  5004. "dist": {
  5005. "type": "zip",
  5006. "url": "https://api.github.com/repos/zendframework/Component_ZendStdlib/zipball/fa33e6647f830d0d2a1cb451efcdfe1bb9a66c33",
  5007. "reference": "fa33e6647f830d0d2a1cb451efcdfe1bb9a66c33",
  5008. "shasum": ""
  5009. },
  5010. "require": {
  5011. "php": ">=5.3.23"
  5012. },
  5013. "require-dev": {
  5014. "zendframework/zend-eventmanager": "self.version",
  5015. "zendframework/zend-serializer": "self.version",
  5016. "zendframework/zend-servicemanager": "self.version"
  5017. },
  5018. "suggest": {
  5019. "zendframework/zend-eventmanager": "To support aggregate hydrator usage",
  5020. "zendframework/zend-serializer": "Zend\\Serializer component",
  5021. "zendframework/zend-servicemanager": "To support hydrator plugin manager usage"
  5022. },
  5023. "type": "library",
  5024. "extra": {
  5025. "branch-alias": {
  5026. "dev-master": "2.3-dev",
  5027. "dev-develop": "2.4-dev"
  5028. }
  5029. },
  5030. "autoload": {
  5031. "psr-0": {
  5032. "Zend\\Stdlib\\": ""
  5033. }
  5034. },
  5035. "notification-url": "https://packagist.org/downloads/",
  5036. "license": [
  5037. "BSD-3-Clause"
  5038. ],
  5039. "homepage": "https://github.com/zendframework/zf2",
  5040. "keywords": [
  5041. "stdlib",
  5042. "zf2"
  5043. ],
  5044. "time": "2014-09-16 22:58:11"
  5045. }
  5046. ],
  5047. "packages-dev": [
  5048. {
  5049. "name": "behat/behat",
  5050. "version": "v2.5.4",
  5051. "source": {
  5052. "type": "git",
  5053. "url": "https://github.com/Behat/Behat.git",
  5054. "reference": "ba257dd19d47b6e196c4e43995a2d2db4dd95991"
  5055. },
  5056. "dist": {
  5057. "type": "zip",
  5058. "url": "https://api.github.com/repos/Behat/Behat/zipball/ba257dd19d47b6e196c4e43995a2d2db4dd95991",
  5059. "reference": "ba257dd19d47b6e196c4e43995a2d2db4dd95991",
  5060. "shasum": ""
  5061. },
  5062. "require": {
  5063. "behat/gherkin": "~2.3.0",
  5064. "php": ">=5.3.1",
  5065. "symfony/config": "~2.0",
  5066. "symfony/console": "~2.0",
  5067. "symfony/dependency-injection": "~2.0",
  5068. "symfony/event-dispatcher": "~2.0",
  5069. "symfony/finder": "~2.0",
  5070. "symfony/translation": "~2.0",
  5071. "symfony/yaml": "~2.0"
  5072. },
  5073. "require-dev": {
  5074. "phpunit/phpunit": "~3.7.19"
  5075. },
  5076. "suggest": {
  5077. "behat/mink-extension": "for integration with Mink testing framework",
  5078. "behat/symfony2-extension": "for integration with Symfony2 web framework",
  5079. "behat/yii-extension": "for integration with Yii web framework"
  5080. },
  5081. "bin": [
  5082. "bin/behat"
  5083. ],
  5084. "type": "library",
  5085. "autoload": {
  5086. "psr-0": {
  5087. "Behat\\Behat": "src/"
  5088. }
  5089. },
  5090. "notification-url": "https://packagist.org/downloads/",
  5091. "license": [
  5092. "MIT"
  5093. ],
  5094. "authors": [
  5095. {
  5096. "name": "Konstantin Kudryashov",
  5097. "email": "ever.zet@gmail.com",
  5098. "homepage": "http://everzet.com"
  5099. }
  5100. ],
  5101. "description": "Scenario-oriented BDD framework for PHP 5.3",
  5102. "homepage": "http://behat.org/",
  5103. "keywords": [
  5104. "BDD",
  5105. "Behat",
  5106. "Symfony2"
  5107. ],
  5108. "time": "2015-01-23 22:18:15"
  5109. },
  5110. {
  5111. "name": "behat/gherkin",
  5112. "version": "v2.3.5",
  5113. "source": {
  5114. "type": "git",
  5115. "url": "https://github.com/Behat/Gherkin.git",
  5116. "reference": "2b33963da5525400573560c173ab5c9c057e1852"
  5117. },
  5118. "dist": {
  5119. "type": "zip",
  5120. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/2b33963da5525400573560c173ab5c9c057e1852",
  5121. "reference": "2b33963da5525400573560c173ab5c9c057e1852",
  5122. "shasum": ""
  5123. },
  5124. "require": {
  5125. "php": ">=5.3.1",
  5126. "symfony/finder": "~2.0"
  5127. },
  5128. "require-dev": {
  5129. "symfony/config": "~2.0",
  5130. "symfony/translation": "~2.0",
  5131. "symfony/yaml": "~2.0"
  5132. },
  5133. "suggest": {
  5134. "symfony/config": "If you want to use Config component to manage resources",
  5135. "symfony/translation": "If you want to use Symfony2 translations adapter",
  5136. "symfony/yaml": "If you want to parse features, represented in YAML files"
  5137. },
  5138. "type": "library",
  5139. "extra": {
  5140. "branch-alias": {
  5141. "dev-develop": "2.2-dev"
  5142. }
  5143. },
  5144. "autoload": {
  5145. "psr-0": {
  5146. "Behat\\Gherkin": "src/"
  5147. }
  5148. },
  5149. "notification-url": "https://packagist.org/downloads/",
  5150. "license": [
  5151. "MIT"
  5152. ],
  5153. "authors": [
  5154. {
  5155. "name": "Konstantin Kudryashov",
  5156. "email": "ever.zet@gmail.com",
  5157. "homepage": "http://everzet.com"
  5158. }
  5159. ],
  5160. "description": "Gherkin DSL parser for PHP 5.3",
  5161. "homepage": "http://behat.org/",
  5162. "keywords": [
  5163. "BDD",
  5164. "Behat",
  5165. "DSL",
  5166. "Symfony2",
  5167. "parser"
  5168. ],
  5169. "time": "2013-10-15 11:22:17"
  5170. },
  5171. {
  5172. "name": "behat/mink",
  5173. "version": "v1.4.3",
  5174. "source": {
  5175. "type": "git",
  5176. "url": "https://github.com/minkphp/Mink.git",
  5177. "reference": "0817070a6e2ec9f475fad9bfb81a962c462eb934"
  5178. },
  5179. "dist": {
  5180. "type": "zip",
  5181. "url": "https://api.github.com/repos/minkphp/Mink/zipball/0817070a6e2ec9f475fad9bfb81a962c462eb934",
  5182. "reference": "0817070a6e2ec9f475fad9bfb81a962c462eb934",
  5183. "shasum": ""
  5184. },
  5185. "require": {
  5186. "php": ">=5.3.1",
  5187. "symfony/css-selector": ">=2.0,<2.4-dev"
  5188. },
  5189. "suggest": {
  5190. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  5191. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  5192. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  5193. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)"
  5194. },
  5195. "type": "library",
  5196. "extra": {
  5197. "branch-alias": {
  5198. "dev-develop": "1.4.x-dev"
  5199. }
  5200. },
  5201. "autoload": {
  5202. "psr-0": {
  5203. "Behat\\Mink": "src/"
  5204. }
  5205. },
  5206. "notification-url": "https://packagist.org/downloads/",
  5207. "license": [
  5208. "MIT"
  5209. ],
  5210. "authors": [
  5211. {
  5212. "name": "Konstantin Kudryashov",
  5213. "email": "ever.zet@gmail.com",
  5214. "homepage": "http://everzet.com"
  5215. }
  5216. ],
  5217. "description": "Web acceptance testing framework for PHP 5.3",
  5218. "homepage": "http://mink.behat.org/",
  5219. "keywords": [
  5220. "browser",
  5221. "testing",
  5222. "web"
  5223. ],
  5224. "time": "2013-03-02 15:53:18"
  5225. },
  5226. {
  5227. "name": "behat/mink-browserkit-driver",
  5228. "version": "v1.0.5",
  5229. "source": {
  5230. "type": "git",
  5231. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  5232. "reference": "f2771b5fc4dbc233859addf37a7d150852f78418"
  5233. },
  5234. "dist": {
  5235. "type": "zip",
  5236. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/f2771b5fc4dbc233859addf37a7d150852f78418",
  5237. "reference": "f2771b5fc4dbc233859addf37a7d150852f78418",
  5238. "shasum": ""
  5239. },
  5240. "require": {
  5241. "behat/mink": "~1.4.3",
  5242. "php": ">=5.3.1",
  5243. "symfony/browser-kit": "~2.0",
  5244. "symfony/dom-crawler": "~2.0"
  5245. },
  5246. "require-dev": {
  5247. "silex/silex": "@dev"
  5248. },
  5249. "type": "mink-driver",
  5250. "extra": {
  5251. "branch-alias": {
  5252. "dev-master": "1.0.x-dev"
  5253. }
  5254. },
  5255. "autoload": {
  5256. "psr-0": {
  5257. "Behat\\Mink\\Driver": "src/"
  5258. }
  5259. },
  5260. "notification-url": "https://packagist.org/downloads/",
  5261. "license": [
  5262. "MIT"
  5263. ],
  5264. "authors": [
  5265. {
  5266. "name": "Konstantin Kudryashov",
  5267. "email": "ever.zet@gmail.com",
  5268. "homepage": "http://everzet.com"
  5269. }
  5270. ],
  5271. "description": "Symfony2 BrowserKit driver for Mink framework",
  5272. "homepage": "http://mink.behat.org/",
  5273. "keywords": [
  5274. "Mink",
  5275. "Symfony2",
  5276. "browser",
  5277. "testing"
  5278. ],
  5279. "time": "2013-04-13 12:17:15"
  5280. },
  5281. {
  5282. "name": "behat/mink-extension",
  5283. "version": "v1.3.1",
  5284. "source": {
  5285. "type": "git",
  5286. "url": "https://github.com/Behat/MinkExtension.git",
  5287. "reference": "0642b680b613fdd6cb774debacf65a0d0d1f08e8"
  5288. },
  5289. "dist": {
  5290. "type": "zip",
  5291. "url": "https://api.github.com/repos/Behat/MinkExtension/zipball/0642b680b613fdd6cb774debacf65a0d0d1f08e8",
  5292. "reference": "0642b680b613fdd6cb774debacf65a0d0d1f08e8",
  5293. "shasum": ""
  5294. },
  5295. "require": {
  5296. "behat/behat": "~2.5.0",
  5297. "behat/mink": ">=1.4.3,<1.6-dev",
  5298. "php": ">=5.3.2",
  5299. "symfony/config": "~2.2"
  5300. },
  5301. "require-dev": {
  5302. "behat/mink-goutte-driver": "~1.0"
  5303. },
  5304. "type": "behat-extension",
  5305. "autoload": {
  5306. "psr-0": {
  5307. "Behat\\MinkExtension": "src/"
  5308. }
  5309. },
  5310. "notification-url": "https://packagist.org/downloads/",
  5311. "license": [
  5312. "MIT"
  5313. ],
  5314. "authors": [
  5315. {
  5316. "name": "Konstantin Kudryashov",
  5317. "email": "ever.zet@gmail.com",
  5318. "homepage": "http://everzet.com"
  5319. }
  5320. ],
  5321. "description": "Mink extension for Behat",
  5322. "homepage": "http://mink.behat.org",
  5323. "keywords": [
  5324. "browser",
  5325. "gui",
  5326. "test",
  5327. "web"
  5328. ],
  5329. "time": "2014-04-27 11:55:27"
  5330. },
  5331. {
  5332. "name": "behat/mink-goutte-driver",
  5333. "version": "v1.0.9",
  5334. "source": {
  5335. "type": "git",
  5336. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  5337. "reference": "fa1b073b48761464feb0b05e6825da44b20118d8"
  5338. },
  5339. "dist": {
  5340. "type": "zip",
  5341. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/fa1b073b48761464feb0b05e6825da44b20118d8",
  5342. "reference": "fa1b073b48761464feb0b05e6825da44b20118d8",
  5343. "shasum": ""
  5344. },
  5345. "require": {
  5346. "behat/mink-browserkit-driver": ">=1.0.5,<1.2.0",
  5347. "fabpot/goutte": "~1.0.1",
  5348. "php": ">=5.3.1"
  5349. },
  5350. "type": "mink-driver",
  5351. "extra": {
  5352. "branch-alias": {
  5353. "dev-master": "1.0.x-dev"
  5354. }
  5355. },
  5356. "autoload": {
  5357. "psr-0": {
  5358. "Behat\\Mink\\Driver": "src/"
  5359. }
  5360. },
  5361. "notification-url": "https://packagist.org/downloads/",
  5362. "license": [
  5363. "MIT"
  5364. ],
  5365. "authors": [
  5366. {
  5367. "name": "Konstantin Kudryashov",
  5368. "email": "ever.zet@gmail.com",
  5369. "homepage": "http://everzet.com"
  5370. }
  5371. ],
  5372. "description": "Goutte driver for Mink framework",
  5373. "homepage": "http://mink.behat.org/",
  5374. "keywords": [
  5375. "browser",
  5376. "goutte",
  5377. "headless",
  5378. "testing"
  5379. ],
  5380. "time": "2013-07-03 18:43:54"
  5381. },
  5382. {
  5383. "name": "behat/mink-selenium2-driver",
  5384. "version": "v1.0.6",
  5385. "source": {
  5386. "type": "git",
  5387. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  5388. "reference": "689f58cc82adc678696942f389d35196fa2453f8"
  5389. },
  5390. "dist": {
  5391. "type": "zip",
  5392. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/689f58cc82adc678696942f389d35196fa2453f8",
  5393. "reference": "689f58cc82adc678696942f389d35196fa2453f8",
  5394. "shasum": ""
  5395. },
  5396. "require": {
  5397. "behat/mink": "~1.4.3",
  5398. "instaclick/php-webdriver": "~1.0.12",
  5399. "php": ">=5.3.1"
  5400. },
  5401. "type": "mink-driver",
  5402. "extra": {
  5403. "branch-alias": {
  5404. "dev-master": "1.0.x-dev"
  5405. }
  5406. },
  5407. "autoload": {
  5408. "psr-0": {
  5409. "Behat\\Mink\\Driver": "src/"
  5410. }
  5411. },
  5412. "notification-url": "https://packagist.org/downloads/",
  5413. "license": [
  5414. "MIT"
  5415. ],
  5416. "authors": [
  5417. {
  5418. "name": "Konstantin Kudryashov",
  5419. "email": "ever.zet@gmail.com",
  5420. "homepage": "http://everzet.com"
  5421. },
  5422. {
  5423. "name": "Pete Otaqui",
  5424. "email": "pete@otaqui.com",
  5425. "homepage": "https://github.com/pete-otaqui"
  5426. }
  5427. ],
  5428. "description": "Selenium2 (WebDriver) driver for Mink framework",
  5429. "homepage": "http://mink.behat.org/",
  5430. "keywords": [
  5431. "ajax",
  5432. "browser",
  5433. "javascript",
  5434. "selenium",
  5435. "testing",
  5436. "webdriver"
  5437. ],
  5438. "time": "2013-04-13 12:56:28"
  5439. },
  5440. {
  5441. "name": "fabpot/goutte",
  5442. "version": "v1.0.7",
  5443. "source": {
  5444. "type": "git",
  5445. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  5446. "reference": "794b196e76bdd37b5155cdecbad311f0a3b07625"
  5447. },
  5448. "dist": {
  5449. "type": "zip",
  5450. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/794b196e76bdd37b5155cdecbad311f0a3b07625",
  5451. "reference": "794b196e76bdd37b5155cdecbad311f0a3b07625",
  5452. "shasum": ""
  5453. },
  5454. "require": {
  5455. "ext-curl": "*",
  5456. "guzzle/http": "~3.1",
  5457. "php": ">=5.3.0",
  5458. "symfony/browser-kit": "~2.1",
  5459. "symfony/css-selector": "~2.1",
  5460. "symfony/dom-crawler": "~2.1",
  5461. "symfony/finder": "~2.1",
  5462. "symfony/process": "~2.1"
  5463. },
  5464. "require-dev": {
  5465. "guzzle/plugin-history": "~3.1",
  5466. "guzzle/plugin-mock": "~3.1"
  5467. },
  5468. "type": "application",
  5469. "extra": {
  5470. "branch-alias": {
  5471. "dev-master": "1.0-dev"
  5472. }
  5473. },
  5474. "autoload": {
  5475. "psr-0": {
  5476. "Goutte": "."
  5477. }
  5478. },
  5479. "notification-url": "https://packagist.org/downloads/",
  5480. "license": [
  5481. "MIT"
  5482. ],
  5483. "authors": [
  5484. {
  5485. "name": "Fabien Potencier",
  5486. "email": "fabien@symfony.com"
  5487. }
  5488. ],
  5489. "description": "A simple PHP Web Scraper",
  5490. "homepage": "https://github.com/fabpot/Goutte",
  5491. "keywords": [
  5492. "scraper"
  5493. ],
  5494. "time": "2014-10-09 15:52:51"
  5495. },
  5496. {
  5497. "name": "guzzle/common",
  5498. "version": "v3.9.2",
  5499. "target-dir": "Guzzle/Common",
  5500. "source": {
  5501. "type": "git",
  5502. "url": "https://github.com/Guzzle3/common.git",
  5503. "reference": "2e36af7cf2ce3ea1f2d7c2831843b883a8e7b7dc"
  5504. },
  5505. "dist": {
  5506. "type": "zip",
  5507. "url": "https://api.github.com/repos/Guzzle3/common/zipball/2e36af7cf2ce3ea1f2d7c2831843b883a8e7b7dc",
  5508. "reference": "2e36af7cf2ce3ea1f2d7c2831843b883a8e7b7dc",
  5509. "shasum": ""
  5510. },
  5511. "require": {
  5512. "php": ">=5.3.2",
  5513. "symfony/event-dispatcher": ">=2.1"
  5514. },
  5515. "type": "library",
  5516. "extra": {
  5517. "branch-alias": {
  5518. "dev-master": "3.7-dev"
  5519. }
  5520. },
  5521. "autoload": {
  5522. "psr-0": {
  5523. "Guzzle\\Common": ""
  5524. }
  5525. },
  5526. "notification-url": "https://packagist.org/downloads/",
  5527. "license": [
  5528. "MIT"
  5529. ],
  5530. "description": "Common libraries used by Guzzle",
  5531. "homepage": "http://guzzlephp.org/",
  5532. "keywords": [
  5533. "collection",
  5534. "common",
  5535. "event",
  5536. "exception"
  5537. ],
  5538. "abandoned": "guzzle/guzzle",
  5539. "time": "2014-08-11 04:32:36"
  5540. },
  5541. {
  5542. "name": "guzzle/http",
  5543. "version": "v3.9.2",
  5544. "target-dir": "Guzzle/Http",
  5545. "source": {
  5546. "type": "git",
  5547. "url": "https://github.com/Guzzle3/http.git",
  5548. "reference": "1e8dd1e2ba9dc42332396f39fbfab950b2301dc5"
  5549. },
  5550. "dist": {
  5551. "type": "zip",
  5552. "url": "https://api.github.com/repos/Guzzle3/http/zipball/1e8dd1e2ba9dc42332396f39fbfab950b2301dc5",
  5553. "reference": "1e8dd1e2ba9dc42332396f39fbfab950b2301dc5",
  5554. "shasum": ""
  5555. },
  5556. "require": {
  5557. "guzzle/common": "self.version",
  5558. "guzzle/parser": "self.version",
  5559. "guzzle/stream": "self.version",
  5560. "php": ">=5.3.2"
  5561. },
  5562. "suggest": {
  5563. "ext-curl": "*"
  5564. },
  5565. "type": "library",
  5566. "extra": {
  5567. "branch-alias": {
  5568. "dev-master": "3.7-dev"
  5569. }
  5570. },
  5571. "autoload": {
  5572. "psr-0": {
  5573. "Guzzle\\Http": ""
  5574. }
  5575. },
  5576. "notification-url": "https://packagist.org/downloads/",
  5577. "license": [
  5578. "MIT"
  5579. ],
  5580. "authors": [
  5581. {
  5582. "name": "Michael Dowling",
  5583. "email": "mtdowling@gmail.com",
  5584. "homepage": "https://github.com/mtdowling"
  5585. }
  5586. ],
  5587. "description": "HTTP libraries used by Guzzle",
  5588. "homepage": "http://guzzlephp.org/",
  5589. "keywords": [
  5590. "Guzzle",
  5591. "client",
  5592. "curl",
  5593. "http",
  5594. "http client"
  5595. ],
  5596. "abandoned": "guzzle/guzzle",
  5597. "time": "2014-08-11 04:32:36"
  5598. },
  5599. {
  5600. "name": "guzzle/parser",
  5601. "version": "v3.9.2",
  5602. "target-dir": "Guzzle/Parser",
  5603. "source": {
  5604. "type": "git",
  5605. "url": "https://github.com/Guzzle3/parser.git",
  5606. "reference": "6874d171318a8e93eb6d224cf85e4678490b625c"
  5607. },
  5608. "dist": {
  5609. "type": "zip",
  5610. "url": "https://api.github.com/repos/Guzzle3/parser/zipball/6874d171318a8e93eb6d224cf85e4678490b625c",
  5611. "reference": "6874d171318a8e93eb6d224cf85e4678490b625c",
  5612. "shasum": ""
  5613. },
  5614. "require": {
  5615. "php": ">=5.3.2"
  5616. },
  5617. "type": "library",
  5618. "extra": {
  5619. "branch-alias": {
  5620. "dev-master": "3.7-dev"
  5621. }
  5622. },
  5623. "autoload": {
  5624. "psr-0": {
  5625. "Guzzle\\Parser": ""
  5626. }
  5627. },
  5628. "notification-url": "https://packagist.org/downloads/",
  5629. "license": [
  5630. "MIT"
  5631. ],
  5632. "description": "Interchangeable parsers used by Guzzle",
  5633. "homepage": "http://guzzlephp.org/",
  5634. "keywords": [
  5635. "URI Template",
  5636. "cookie",
  5637. "http",
  5638. "message",
  5639. "url"
  5640. ],
  5641. "abandoned": "guzzle/guzzle",
  5642. "time": "2014-02-05 18:29:46"
  5643. },
  5644. {
  5645. "name": "guzzle/stream",
  5646. "version": "v3.9.2",
  5647. "target-dir": "Guzzle/Stream",
  5648. "source": {
  5649. "type": "git",
  5650. "url": "https://github.com/Guzzle3/stream.git",
  5651. "reference": "60c7fed02e98d2c518dae8f97874c8f4622100f0"
  5652. },
  5653. "dist": {
  5654. "type": "zip",
  5655. "url": "https://api.github.com/repos/Guzzle3/stream/zipball/60c7fed02e98d2c518dae8f97874c8f4622100f0",
  5656. "reference": "60c7fed02e98d2c518dae8f97874c8f4622100f0",
  5657. "shasum": ""
  5658. },
  5659. "require": {
  5660. "guzzle/common": "self.version",
  5661. "php": ">=5.3.2"
  5662. },
  5663. "suggest": {
  5664. "guzzle/http": "To convert Guzzle request objects to PHP streams"
  5665. },
  5666. "type": "library",
  5667. "extra": {
  5668. "branch-alias": {
  5669. "dev-master": "3.7-dev"
  5670. }
  5671. },
  5672. "autoload": {
  5673. "psr-0": {
  5674. "Guzzle\\Stream": ""
  5675. }
  5676. },
  5677. "notification-url": "https://packagist.org/downloads/",
  5678. "license": [
  5679. "MIT"
  5680. ],
  5681. "authors": [
  5682. {
  5683. "name": "Michael Dowling",
  5684. "email": "mtdowling@gmail.com",
  5685. "homepage": "https://github.com/mtdowling"
  5686. }
  5687. ],
  5688. "description": "Guzzle stream wrapper component",
  5689. "homepage": "http://guzzlephp.org/",
  5690. "keywords": [
  5691. "Guzzle",
  5692. "component",
  5693. "stream"
  5694. ],
  5695. "abandoned": "guzzle/guzzle",
  5696. "time": "2014-05-01 21:36:02"
  5697. },
  5698. {
  5699. "name": "instaclick/php-webdriver",
  5700. "version": "1.0.17",
  5701. "source": {
  5702. "type": "git",
  5703. "url": "https://github.com/instaclick/php-webdriver.git",
  5704. "reference": "47a6019553a7a5b42d35493276ffc2c9252c53d5"
  5705. },
  5706. "dist": {
  5707. "type": "zip",
  5708. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/47a6019553a7a5b42d35493276ffc2c9252c53d5",
  5709. "reference": "47a6019553a7a5b42d35493276ffc2c9252c53d5",
  5710. "shasum": ""
  5711. },
  5712. "require": {
  5713. "ext-curl": "*",
  5714. "php": ">=5.3.2"
  5715. },
  5716. "bin": [
  5717. "bin/webunit"
  5718. ],
  5719. "type": "library",
  5720. "extra": {
  5721. "branch-alias": {
  5722. "dev-master": "1.0.x-dev"
  5723. }
  5724. },
  5725. "autoload": {
  5726. "psr-0": {
  5727. "WebDriver": "lib/"
  5728. }
  5729. },
  5730. "notification-url": "https://packagist.org/downloads/",
  5731. "license": [
  5732. "Apache-2.0"
  5733. ],
  5734. "authors": [
  5735. {
  5736. "name": "Justin Bishop",
  5737. "email": "jubishop@gmail.com",
  5738. "role": "Developer"
  5739. },
  5740. {
  5741. "name": "Anthon Pang",
  5742. "email": "apang@softwaredevelopment.ca",
  5743. "role": "developer"
  5744. }
  5745. ],
  5746. "description": "PHP WebDriver for Selenium 2",
  5747. "homepage": "http://instaclick.com/",
  5748. "keywords": [
  5749. "browser",
  5750. "selenium",
  5751. "webdriver",
  5752. "webtest"
  5753. ],
  5754. "time": "2013-10-04 15:03:51"
  5755. },
  5756. {
  5757. "name": "symfony/browser-kit",
  5758. "version": "v2.6.5",
  5759. "target-dir": "Symfony/Component/BrowserKit",
  5760. "source": {
  5761. "type": "git",
  5762. "url": "https://github.com/symfony/BrowserKit.git",
  5763. "reference": "329bdc10bff1e365abb8a3388d60a65630daf705"
  5764. },
  5765. "dist": {
  5766. "type": "zip",
  5767. "url": "https://api.github.com/repos/symfony/BrowserKit/zipball/329bdc10bff1e365abb8a3388d60a65630daf705",
  5768. "reference": "329bdc10bff1e365abb8a3388d60a65630daf705",
  5769. "shasum": ""
  5770. },
  5771. "require": {
  5772. "php": ">=5.3.3",
  5773. "symfony/dom-crawler": "~2.0,>=2.0.5"
  5774. },
  5775. "require-dev": {
  5776. "symfony/css-selector": "~2.0,>=2.0.5",
  5777. "symfony/phpunit-bridge": "~2.7",
  5778. "symfony/process": "~2.0,>=2.0.5"
  5779. },
  5780. "suggest": {
  5781. "symfony/process": ""
  5782. },
  5783. "type": "library",
  5784. "extra": {
  5785. "branch-alias": {
  5786. "dev-master": "2.6-dev"
  5787. }
  5788. },
  5789. "autoload": {
  5790. "psr-0": {
  5791. "Symfony\\Component\\BrowserKit\\": ""
  5792. }
  5793. },
  5794. "notification-url": "https://packagist.org/downloads/",
  5795. "license": [
  5796. "MIT"
  5797. ],
  5798. "authors": [
  5799. {
  5800. "name": "Symfony Community",
  5801. "homepage": "http://symfony.com/contributors"
  5802. },
  5803. {
  5804. "name": "Fabien Potencier",
  5805. "email": "fabien@symfony.com"
  5806. }
  5807. ],
  5808. "description": "Symfony BrowserKit Component",
  5809. "homepage": "http://symfony.com",
  5810. "time": "2015-03-13 13:21:46"
  5811. },
  5812. {
  5813. "name": "symfony/css-selector",
  5814. "version": "v2.3.26",
  5815. "target-dir": "Symfony/Component/CssSelector",
  5816. "source": {
  5817. "type": "git",
  5818. "url": "https://github.com/symfony/CssSelector.git",
  5819. "reference": "d11b64b8e4e96627dec3dabec936cdf410d48d78"
  5820. },
  5821. "dist": {
  5822. "type": "zip",
  5823. "url": "https://api.github.com/repos/symfony/CssSelector/zipball/d11b64b8e4e96627dec3dabec936cdf410d48d78",
  5824. "reference": "d11b64b8e4e96627dec3dabec936cdf410d48d78",
  5825. "shasum": ""
  5826. },
  5827. "require": {
  5828. "php": ">=5.3.3"
  5829. },
  5830. "require-dev": {
  5831. "symfony/phpunit-bridge": "~2.7"
  5832. },
  5833. "type": "library",
  5834. "extra": {
  5835. "branch-alias": {
  5836. "dev-master": "2.3-dev"
  5837. }
  5838. },
  5839. "autoload": {
  5840. "psr-0": {
  5841. "Symfony\\Component\\CssSelector\\": ""
  5842. }
  5843. },
  5844. "notification-url": "https://packagist.org/downloads/",
  5845. "license": [
  5846. "MIT"
  5847. ],
  5848. "authors": [
  5849. {
  5850. "name": "Symfony Community",
  5851. "homepage": "http://symfony.com/contributors"
  5852. },
  5853. {
  5854. "name": "Jean-François Simon",
  5855. "email": "jeanfrancois.simon@sensiolabs.com"
  5856. },
  5857. {
  5858. "name": "Fabien Potencier",
  5859. "email": "fabien@symfony.com"
  5860. }
  5861. ],
  5862. "description": "Symfony CssSelector Component",
  5863. "homepage": "http://symfony.com",
  5864. "time": "2015-02-24 10:24:26"
  5865. },
  5866. {
  5867. "name": "symfony/dom-crawler",
  5868. "version": "v2.6.5",
  5869. "target-dir": "Symfony/Component/DomCrawler",
  5870. "source": {
  5871. "type": "git",
  5872. "url": "https://github.com/symfony/DomCrawler.git",
  5873. "reference": "896d1fb78832e8c4a4e4e8565ffdf668a53e518f"
  5874. },
  5875. "dist": {
  5876. "type": "zip",
  5877. "url": "https://api.github.com/repos/symfony/DomCrawler/zipball/896d1fb78832e8c4a4e4e8565ffdf668a53e518f",
  5878. "reference": "896d1fb78832e8c4a4e4e8565ffdf668a53e518f",
  5879. "shasum": ""
  5880. },
  5881. "require": {
  5882. "php": ">=5.3.3"
  5883. },
  5884. "require-dev": {
  5885. "symfony/css-selector": "~2.3",
  5886. "symfony/phpunit-bridge": "~2.7"
  5887. },
  5888. "suggest": {
  5889. "symfony/css-selector": ""
  5890. },
  5891. "type": "library",
  5892. "extra": {
  5893. "branch-alias": {
  5894. "dev-master": "2.6-dev"
  5895. }
  5896. },
  5897. "autoload": {
  5898. "psr-0": {
  5899. "Symfony\\Component\\DomCrawler\\": ""
  5900. }
  5901. },
  5902. "notification-url": "https://packagist.org/downloads/",
  5903. "license": [
  5904. "MIT"
  5905. ],
  5906. "authors": [
  5907. {
  5908. "name": "Symfony Community",
  5909. "homepage": "http://symfony.com/contributors"
  5910. },
  5911. {
  5912. "name": "Fabien Potencier",
  5913. "email": "fabien@symfony.com"
  5914. }
  5915. ],
  5916. "description": "Symfony DomCrawler Component",
  5917. "homepage": "http://symfony.com",
  5918. "time": "2015-03-12 10:28:44"
  5919. }
  5920. ],
  5921. "aliases": [],
  5922. "minimum-stability": "stable",
  5923. "stability-flags": {
  5924. "behat/behat": 0,
  5925. "behat/mink": 0
  5926. },
  5927. "prefer-stable": false,
  5928. "prefer-lowest": false,
  5929. "platform": {
  5930. "php": ">=5.4"
  5931. },
  5932. "platform-dev": []
  5933. }