composer.lock 231 KB

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