composer.lock 218 KB

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