composer.lock 242 KB

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