composer.lock 235 KB

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