composer.lock 208 KB

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