composer.lock 244 KB

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