composer.lock 229 KB

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