composer.lock 196 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "f883ac1ba412a4b97b03d547517d13e7",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "1.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "c163e2b614550aedcf71165db2473d936abbced6"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/c163e2b614550aedcf71165db2473d936abbced6",
  20. "reference": "c163e2b614550aedcf71165db2473d936abbced6",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5.9",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^5.0 || ^4.8.10",
  30. "squizlabs/php_codesniffer": "^2.3"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "1.2-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/Asm89/Stack/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "time": "2017-12-20T14:37:45+00:00"
  60. },
  61. {
  62. "name": "chi-teck/drupal-code-generator",
  63. "version": "1.22.0",
  64. "source": {
  65. "type": "git",
  66. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  67. "reference": "c7e3018ebcbdb5befcfe928c792146078c8c2d05"
  68. },
  69. "dist": {
  70. "type": "zip",
  71. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/c7e3018ebcbdb5befcfe928c792146078c8c2d05",
  72. "reference": "c7e3018ebcbdb5befcfe928c792146078c8c2d05",
  73. "shasum": ""
  74. },
  75. "require": {
  76. "php": ">=5.5.9",
  77. "symfony/console": "~2.7|^3",
  78. "symfony/filesystem": "~2.7|^3",
  79. "twig/twig": "^1.23.1"
  80. },
  81. "bin": [
  82. "bin/dcg"
  83. ],
  84. "type": "library",
  85. "autoload": {
  86. "files": [
  87. "src/bootstrap.php"
  88. ],
  89. "psr-4": {
  90. "DrupalCodeGenerator\\": "src"
  91. }
  92. },
  93. "notification-url": "https://packagist.org/downloads/",
  94. "license": [
  95. "GPL2"
  96. ],
  97. "description": "Drupal code generator",
  98. "time": "2018-01-06T15:54:30+00:00"
  99. },
  100. {
  101. "name": "composer/installers",
  102. "version": "v1.5.0",
  103. "source": {
  104. "type": "git",
  105. "url": "https://github.com/composer/installers.git",
  106. "reference": "049797d727261bf27f2690430d935067710049c2"
  107. },
  108. "dist": {
  109. "type": "zip",
  110. "url": "https://api.github.com/repos/composer/installers/zipball/049797d727261bf27f2690430d935067710049c2",
  111. "reference": "049797d727261bf27f2690430d935067710049c2",
  112. "shasum": ""
  113. },
  114. "require": {
  115. "composer-plugin-api": "^1.0"
  116. },
  117. "replace": {
  118. "roundcube/plugin-installer": "*",
  119. "shama/baton": "*"
  120. },
  121. "require-dev": {
  122. "composer/composer": "1.0.*@dev",
  123. "phpunit/phpunit": "^4.8.36"
  124. },
  125. "type": "composer-plugin",
  126. "extra": {
  127. "class": "Composer\\Installers\\Plugin",
  128. "branch-alias": {
  129. "dev-master": "1.0-dev"
  130. }
  131. },
  132. "autoload": {
  133. "psr-4": {
  134. "Composer\\Installers\\": "src/Composer/Installers"
  135. }
  136. },
  137. "notification-url": "https://packagist.org/downloads/",
  138. "license": [
  139. "MIT"
  140. ],
  141. "authors": [
  142. {
  143. "name": "Kyle Robinson Young",
  144. "email": "kyle@dontkry.com",
  145. "homepage": "https://github.com/shama"
  146. }
  147. ],
  148. "description": "A multi-framework Composer library installer",
  149. "homepage": "https://composer.github.io/installers/",
  150. "keywords": [
  151. "Craft",
  152. "Dolibarr",
  153. "Eliasis",
  154. "Hurad",
  155. "ImageCMS",
  156. "Kanboard",
  157. "Lan Management System",
  158. "MODX Evo",
  159. "Mautic",
  160. "Maya",
  161. "OXID",
  162. "Plentymarkets",
  163. "Porto",
  164. "RadPHP",
  165. "SMF",
  166. "Thelia",
  167. "WolfCMS",
  168. "agl",
  169. "aimeos",
  170. "annotatecms",
  171. "attogram",
  172. "bitrix",
  173. "cakephp",
  174. "chef",
  175. "cockpit",
  176. "codeigniter",
  177. "concrete5",
  178. "croogo",
  179. "dokuwiki",
  180. "drupal",
  181. "eZ Platform",
  182. "elgg",
  183. "expressionengine",
  184. "fuelphp",
  185. "grav",
  186. "installer",
  187. "itop",
  188. "joomla",
  189. "kohana",
  190. "laravel",
  191. "lavalite",
  192. "lithium",
  193. "magento",
  194. "majima",
  195. "mako",
  196. "mediawiki",
  197. "modulework",
  198. "modx",
  199. "moodle",
  200. "osclass",
  201. "phpbb",
  202. "piwik",
  203. "ppi",
  204. "puppet",
  205. "pxcms",
  206. "reindex",
  207. "roundcube",
  208. "shopware",
  209. "silverstripe",
  210. "sydes",
  211. "symfony",
  212. "typo3",
  213. "wordpress",
  214. "yawik",
  215. "zend",
  216. "zikula"
  217. ],
  218. "time": "2017-12-29T09:13:20+00:00"
  219. },
  220. {
  221. "name": "composer/semver",
  222. "version": "1.4.2",
  223. "source": {
  224. "type": "git",
  225. "url": "https://github.com/composer/semver.git",
  226. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  227. },
  228. "dist": {
  229. "type": "zip",
  230. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  231. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  232. "shasum": ""
  233. },
  234. "require": {
  235. "php": "^5.3.2 || ^7.0"
  236. },
  237. "require-dev": {
  238. "phpunit/phpunit": "^4.5 || ^5.0.5",
  239. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  240. },
  241. "type": "library",
  242. "extra": {
  243. "branch-alias": {
  244. "dev-master": "1.x-dev"
  245. }
  246. },
  247. "autoload": {
  248. "psr-4": {
  249. "Composer\\Semver\\": "src"
  250. }
  251. },
  252. "notification-url": "https://packagist.org/downloads/",
  253. "license": [
  254. "MIT"
  255. ],
  256. "authors": [
  257. {
  258. "name": "Nils Adermann",
  259. "email": "naderman@naderman.de",
  260. "homepage": "http://www.naderman.de"
  261. },
  262. {
  263. "name": "Jordi Boggiano",
  264. "email": "j.boggiano@seld.be",
  265. "homepage": "http://seld.be"
  266. },
  267. {
  268. "name": "Rob Bast",
  269. "email": "rob.bast@gmail.com",
  270. "homepage": "http://robbast.nl"
  271. }
  272. ],
  273. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  274. "keywords": [
  275. "semantic",
  276. "semver",
  277. "validation",
  278. "versioning"
  279. ],
  280. "time": "2016-08-30T16:08:34+00:00"
  281. },
  282. {
  283. "name": "consolidation/annotated-command",
  284. "version": "2.8.2",
  285. "source": {
  286. "type": "git",
  287. "url": "https://github.com/consolidation/annotated-command.git",
  288. "reference": "e97c38717eae23a2bafcf3f09438290eee6ebeb4"
  289. },
  290. "dist": {
  291. "type": "zip",
  292. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/e97c38717eae23a2bafcf3f09438290eee6ebeb4",
  293. "reference": "e97c38717eae23a2bafcf3f09438290eee6ebeb4",
  294. "shasum": ""
  295. },
  296. "require": {
  297. "consolidation/output-formatters": "^3.1.12",
  298. "php": ">=5.4.0",
  299. "psr/log": "^1",
  300. "symfony/console": "^2.8|^3|^4",
  301. "symfony/event-dispatcher": "^2.5|^3|^4",
  302. "symfony/finder": "^2.5|^3|^4"
  303. },
  304. "require-dev": {
  305. "phpunit/phpunit": "^4.8",
  306. "satooshi/php-coveralls": "^1.0.2 | dev-master",
  307. "squizlabs/php_codesniffer": "^2.7"
  308. },
  309. "type": "library",
  310. "extra": {
  311. "branch-alias": {
  312. "dev-master": "2.x-dev"
  313. }
  314. },
  315. "autoload": {
  316. "psr-4": {
  317. "Consolidation\\AnnotatedCommand\\": "src"
  318. }
  319. },
  320. "notification-url": "https://packagist.org/downloads/",
  321. "license": [
  322. "MIT"
  323. ],
  324. "authors": [
  325. {
  326. "name": "Greg Anderson",
  327. "email": "greg.1.anderson@greenknowe.org"
  328. }
  329. ],
  330. "description": "Initialize Symfony Console commands from annotated command class methods.",
  331. "time": "2017-11-29T16:23:23+00:00"
  332. },
  333. {
  334. "name": "consolidation/config",
  335. "version": "1.0.9",
  336. "source": {
  337. "type": "git",
  338. "url": "https://github.com/consolidation/config.git",
  339. "reference": "34ca8d7c1ee60a7b591b10617114cf1210a2e92c"
  340. },
  341. "dist": {
  342. "type": "zip",
  343. "url": "https://api.github.com/repos/consolidation/config/zipball/34ca8d7c1ee60a7b591b10617114cf1210a2e92c",
  344. "reference": "34ca8d7c1ee60a7b591b10617114cf1210a2e92c",
  345. "shasum": ""
  346. },
  347. "require": {
  348. "dflydev/dot-access-data": "^1.1.0",
  349. "grasmash/expander": "^1",
  350. "php": ">=5.4.0"
  351. },
  352. "require-dev": {
  353. "greg-1-anderson/composer-test-scenarios": "^1",
  354. "phpunit/phpunit": "^4",
  355. "satooshi/php-coveralls": "^1.0",
  356. "squizlabs/php_codesniffer": "2.*",
  357. "symfony/console": "^2.5|^3|^4",
  358. "symfony/yaml": "^2.8.11|^3|^4"
  359. },
  360. "suggest": {
  361. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  362. },
  363. "type": "library",
  364. "extra": {
  365. "branch-alias": {
  366. "dev-master": "1.x-dev"
  367. }
  368. },
  369. "autoload": {
  370. "psr-4": {
  371. "Consolidation\\Config\\": "src"
  372. }
  373. },
  374. "notification-url": "https://packagist.org/downloads/",
  375. "license": [
  376. "MIT"
  377. ],
  378. "authors": [
  379. {
  380. "name": "Greg Anderson",
  381. "email": "greg.1.anderson@greenknowe.org"
  382. }
  383. ],
  384. "description": "Provide configuration services for a commandline tool.",
  385. "time": "2017-12-22T17:28:19+00:00"
  386. },
  387. {
  388. "name": "consolidation/log",
  389. "version": "1.0.5",
  390. "source": {
  391. "type": "git",
  392. "url": "https://github.com/consolidation/log.git",
  393. "reference": "dbc7c535f319a4a2d5a5077738f8eb7c10df8821"
  394. },
  395. "dist": {
  396. "type": "zip",
  397. "url": "https://api.github.com/repos/consolidation/log/zipball/dbc7c535f319a4a2d5a5077738f8eb7c10df8821",
  398. "reference": "dbc7c535f319a4a2d5a5077738f8eb7c10df8821",
  399. "shasum": ""
  400. },
  401. "require": {
  402. "php": ">=5.5.0",
  403. "psr/log": "~1.0",
  404. "symfony/console": "^2.8|^3|^4"
  405. },
  406. "require-dev": {
  407. "phpunit/phpunit": "4.*",
  408. "satooshi/php-coveralls": "dev-master",
  409. "squizlabs/php_codesniffer": "2.*"
  410. },
  411. "type": "library",
  412. "extra": {
  413. "branch-alias": {
  414. "dev-master": "1.x-dev"
  415. }
  416. },
  417. "autoload": {
  418. "psr-4": {
  419. "Consolidation\\Log\\": "src"
  420. }
  421. },
  422. "notification-url": "https://packagist.org/downloads/",
  423. "license": [
  424. "MIT"
  425. ],
  426. "authors": [
  427. {
  428. "name": "Greg Anderson",
  429. "email": "greg.1.anderson@greenknowe.org"
  430. }
  431. ],
  432. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  433. "time": "2017-11-29T01:44:16+00:00"
  434. },
  435. {
  436. "name": "consolidation/output-formatters",
  437. "version": "3.1.13",
  438. "source": {
  439. "type": "git",
  440. "url": "https://github.com/consolidation/output-formatters.git",
  441. "reference": "3188461e965b32148c8fb85261833b2b72d34b8c"
  442. },
  443. "dist": {
  444. "type": "zip",
  445. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/3188461e965b32148c8fb85261833b2b72d34b8c",
  446. "reference": "3188461e965b32148c8fb85261833b2b72d34b8c",
  447. "shasum": ""
  448. },
  449. "require": {
  450. "php": ">=5.4.0",
  451. "symfony/console": "^2.8|^3|^4",
  452. "symfony/finder": "^2.5|^3|^4"
  453. },
  454. "require-dev": {
  455. "phpunit/phpunit": "^4.8",
  456. "satooshi/php-coveralls": "^1.0.2 | dev-master",
  457. "squizlabs/php_codesniffer": "^2.7",
  458. "victorjonsson/markdowndocs": "^1.3"
  459. },
  460. "type": "library",
  461. "extra": {
  462. "branch-alias": {
  463. "dev-master": "3.x-dev"
  464. }
  465. },
  466. "autoload": {
  467. "psr-4": {
  468. "Consolidation\\OutputFormatters\\": "src"
  469. }
  470. },
  471. "notification-url": "https://packagist.org/downloads/",
  472. "license": [
  473. "MIT"
  474. ],
  475. "authors": [
  476. {
  477. "name": "Greg Anderson",
  478. "email": "greg.1.anderson@greenknowe.org"
  479. }
  480. ],
  481. "description": "Format text by applying transformations provided by plug-in formatters.",
  482. "time": "2017-11-29T15:25:38+00:00"
  483. },
  484. {
  485. "name": "consolidation/robo",
  486. "version": "1.2.1",
  487. "source": {
  488. "type": "git",
  489. "url": "https://github.com/consolidation/Robo.git",
  490. "reference": "b6296f1cf1088f1a11b0b819f9e42ef6f00b79a9"
  491. },
  492. "dist": {
  493. "type": "zip",
  494. "url": "https://api.github.com/repos/consolidation/Robo/zipball/b6296f1cf1088f1a11b0b819f9e42ef6f00b79a9",
  495. "reference": "b6296f1cf1088f1a11b0b819f9e42ef6f00b79a9",
  496. "shasum": ""
  497. },
  498. "require": {
  499. "consolidation/annotated-command": "^2.8.2",
  500. "consolidation/config": "^1.0.1",
  501. "consolidation/log": "~1",
  502. "consolidation/output-formatters": "^3.1.13",
  503. "grasmash/yaml-expander": "^1.3",
  504. "league/container": "^2.2",
  505. "php": ">=5.5.0",
  506. "symfony/console": "^2.8|^3|^4",
  507. "symfony/event-dispatcher": "^2.5|^3|^4",
  508. "symfony/filesystem": "^2.5|^3|^4",
  509. "symfony/finder": "^2.5|^3|^4",
  510. "symfony/process": "^2.5|^3|^4"
  511. },
  512. "replace": {
  513. "codegyre/robo": "< 1.0"
  514. },
  515. "require-dev": {
  516. "codeception/aspect-mock": "^1|^2.1.1",
  517. "codeception/base": "^2.3.7",
  518. "codeception/verify": "^0.3.2",
  519. "greg-1-anderson/composer-test-scenarios": "^1",
  520. "natxet/cssmin": "3.0.4",
  521. "patchwork/jsqueeze": "~2",
  522. "pear/archive_tar": "^1.4.2",
  523. "phpunit/php-code-coverage": "~2|~4",
  524. "satooshi/php-coveralls": "^2",
  525. "squizlabs/php_codesniffer": "^2.8"
  526. },
  527. "suggest": {
  528. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  529. "natxet/CssMin": "For minifying CSS files in taskMinify",
  530. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  531. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  532. },
  533. "bin": [
  534. "robo"
  535. ],
  536. "type": "library",
  537. "extra": {
  538. "branch-alias": {
  539. "dev-master": "1.x-dev",
  540. "dev-state": "1.x-dev"
  541. }
  542. },
  543. "autoload": {
  544. "psr-4": {
  545. "Robo\\": "src"
  546. }
  547. },
  548. "notification-url": "https://packagist.org/downloads/",
  549. "license": [
  550. "MIT"
  551. ],
  552. "authors": [
  553. {
  554. "name": "Davert",
  555. "email": "davert.php@resend.cc"
  556. }
  557. ],
  558. "description": "Modern task runner",
  559. "time": "2017-12-29T06:48:35+00:00"
  560. },
  561. {
  562. "name": "container-interop/container-interop",
  563. "version": "1.2.0",
  564. "source": {
  565. "type": "git",
  566. "url": "https://github.com/container-interop/container-interop.git",
  567. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  568. },
  569. "dist": {
  570. "type": "zip",
  571. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  572. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  573. "shasum": ""
  574. },
  575. "require": {
  576. "psr/container": "^1.0"
  577. },
  578. "type": "library",
  579. "autoload": {
  580. "psr-4": {
  581. "Interop\\Container\\": "src/Interop/Container/"
  582. }
  583. },
  584. "notification-url": "https://packagist.org/downloads/",
  585. "license": [
  586. "MIT"
  587. ],
  588. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  589. "homepage": "https://github.com/container-interop/container-interop",
  590. "time": "2017-02-14T19:40:03+00:00"
  591. },
  592. {
  593. "name": "dflydev/dot-access-data",
  594. "version": "v1.1.0",
  595. "source": {
  596. "type": "git",
  597. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  598. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  599. },
  600. "dist": {
  601. "type": "zip",
  602. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  603. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  604. "shasum": ""
  605. },
  606. "require": {
  607. "php": ">=5.3.2"
  608. },
  609. "type": "library",
  610. "extra": {
  611. "branch-alias": {
  612. "dev-master": "1.0-dev"
  613. }
  614. },
  615. "autoload": {
  616. "psr-0": {
  617. "Dflydev\\DotAccessData": "src"
  618. }
  619. },
  620. "notification-url": "https://packagist.org/downloads/",
  621. "license": [
  622. "MIT"
  623. ],
  624. "authors": [
  625. {
  626. "name": "Dragonfly Development Inc.",
  627. "email": "info@dflydev.com",
  628. "homepage": "http://dflydev.com"
  629. },
  630. {
  631. "name": "Beau Simensen",
  632. "email": "beau@dflydev.com",
  633. "homepage": "http://beausimensen.com"
  634. },
  635. {
  636. "name": "Carlos Frutos",
  637. "email": "carlos@kiwing.it",
  638. "homepage": "https://github.com/cfrutos"
  639. }
  640. ],
  641. "description": "Given a deep data structure, access data by dot notation.",
  642. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  643. "keywords": [
  644. "access",
  645. "data",
  646. "dot",
  647. "notation"
  648. ],
  649. "time": "2017-01-20T21:14:22+00:00"
  650. },
  651. {
  652. "name": "dnoegel/php-xdg-base-dir",
  653. "version": "0.1",
  654. "source": {
  655. "type": "git",
  656. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  657. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  658. },
  659. "dist": {
  660. "type": "zip",
  661. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  662. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  663. "shasum": ""
  664. },
  665. "require": {
  666. "php": ">=5.3.2"
  667. },
  668. "require-dev": {
  669. "phpunit/phpunit": "@stable"
  670. },
  671. "type": "project",
  672. "autoload": {
  673. "psr-4": {
  674. "XdgBaseDir\\": "src/"
  675. }
  676. },
  677. "notification-url": "https://packagist.org/downloads/",
  678. "license": [
  679. "MIT"
  680. ],
  681. "description": "implementation of xdg base directory specification for php",
  682. "time": "2014-10-24T07:27:01+00:00"
  683. },
  684. {
  685. "name": "doctrine/annotations",
  686. "version": "v1.4.0",
  687. "source": {
  688. "type": "git",
  689. "url": "https://github.com/doctrine/annotations.git",
  690. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  691. },
  692. "dist": {
  693. "type": "zip",
  694. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  695. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  696. "shasum": ""
  697. },
  698. "require": {
  699. "doctrine/lexer": "1.*",
  700. "php": "^5.6 || ^7.0"
  701. },
  702. "require-dev": {
  703. "doctrine/cache": "1.*",
  704. "phpunit/phpunit": "^5.7"
  705. },
  706. "type": "library",
  707. "extra": {
  708. "branch-alias": {
  709. "dev-master": "1.4.x-dev"
  710. }
  711. },
  712. "autoload": {
  713. "psr-4": {
  714. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  715. }
  716. },
  717. "notification-url": "https://packagist.org/downloads/",
  718. "license": [
  719. "MIT"
  720. ],
  721. "authors": [
  722. {
  723. "name": "Roman Borschel",
  724. "email": "roman@code-factory.org"
  725. },
  726. {
  727. "name": "Benjamin Eberlei",
  728. "email": "kontakt@beberlei.de"
  729. },
  730. {
  731. "name": "Guilherme Blanco",
  732. "email": "guilhermeblanco@gmail.com"
  733. },
  734. {
  735. "name": "Jonathan Wage",
  736. "email": "jonwage@gmail.com"
  737. },
  738. {
  739. "name": "Johannes Schmitt",
  740. "email": "schmittjoh@gmail.com"
  741. }
  742. ],
  743. "description": "Docblock Annotations Parser",
  744. "homepage": "http://www.doctrine-project.org",
  745. "keywords": [
  746. "annotations",
  747. "docblock",
  748. "parser"
  749. ],
  750. "time": "2017-02-24T16:22:25+00:00"
  751. },
  752. {
  753. "name": "doctrine/cache",
  754. "version": "v1.6.2",
  755. "source": {
  756. "type": "git",
  757. "url": "https://github.com/doctrine/cache.git",
  758. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  759. },
  760. "dist": {
  761. "type": "zip",
  762. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  763. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  764. "shasum": ""
  765. },
  766. "require": {
  767. "php": "~5.5|~7.0"
  768. },
  769. "conflict": {
  770. "doctrine/common": ">2.2,<2.4"
  771. },
  772. "require-dev": {
  773. "phpunit/phpunit": "~4.8|~5.0",
  774. "predis/predis": "~1.0",
  775. "satooshi/php-coveralls": "~0.6"
  776. },
  777. "type": "library",
  778. "extra": {
  779. "branch-alias": {
  780. "dev-master": "1.6.x-dev"
  781. }
  782. },
  783. "autoload": {
  784. "psr-4": {
  785. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  786. }
  787. },
  788. "notification-url": "https://packagist.org/downloads/",
  789. "license": [
  790. "MIT"
  791. ],
  792. "authors": [
  793. {
  794. "name": "Roman Borschel",
  795. "email": "roman@code-factory.org"
  796. },
  797. {
  798. "name": "Benjamin Eberlei",
  799. "email": "kontakt@beberlei.de"
  800. },
  801. {
  802. "name": "Guilherme Blanco",
  803. "email": "guilhermeblanco@gmail.com"
  804. },
  805. {
  806. "name": "Jonathan Wage",
  807. "email": "jonwage@gmail.com"
  808. },
  809. {
  810. "name": "Johannes Schmitt",
  811. "email": "schmittjoh@gmail.com"
  812. }
  813. ],
  814. "description": "Caching library offering an object-oriented API for many cache backends",
  815. "homepage": "http://www.doctrine-project.org",
  816. "keywords": [
  817. "cache",
  818. "caching"
  819. ],
  820. "time": "2017-07-22T12:49:21+00:00"
  821. },
  822. {
  823. "name": "doctrine/collections",
  824. "version": "v1.4.0",
  825. "source": {
  826. "type": "git",
  827. "url": "https://github.com/doctrine/collections.git",
  828. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  829. },
  830. "dist": {
  831. "type": "zip",
  832. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  833. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  834. "shasum": ""
  835. },
  836. "require": {
  837. "php": "^5.6 || ^7.0"
  838. },
  839. "require-dev": {
  840. "doctrine/coding-standard": "~0.1@dev",
  841. "phpunit/phpunit": "^5.7"
  842. },
  843. "type": "library",
  844. "extra": {
  845. "branch-alias": {
  846. "dev-master": "1.3.x-dev"
  847. }
  848. },
  849. "autoload": {
  850. "psr-0": {
  851. "Doctrine\\Common\\Collections\\": "lib/"
  852. }
  853. },
  854. "notification-url": "https://packagist.org/downloads/",
  855. "license": [
  856. "MIT"
  857. ],
  858. "authors": [
  859. {
  860. "name": "Roman Borschel",
  861. "email": "roman@code-factory.org"
  862. },
  863. {
  864. "name": "Benjamin Eberlei",
  865. "email": "kontakt@beberlei.de"
  866. },
  867. {
  868. "name": "Guilherme Blanco",
  869. "email": "guilhermeblanco@gmail.com"
  870. },
  871. {
  872. "name": "Jonathan Wage",
  873. "email": "jonwage@gmail.com"
  874. },
  875. {
  876. "name": "Johannes Schmitt",
  877. "email": "schmittjoh@gmail.com"
  878. }
  879. ],
  880. "description": "Collections Abstraction library",
  881. "homepage": "http://www.doctrine-project.org",
  882. "keywords": [
  883. "array",
  884. "collections",
  885. "iterator"
  886. ],
  887. "time": "2017-01-03T10:49:41+00:00"
  888. },
  889. {
  890. "name": "doctrine/common",
  891. "version": "v2.7.3",
  892. "source": {
  893. "type": "git",
  894. "url": "https://github.com/doctrine/common.git",
  895. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  896. },
  897. "dist": {
  898. "type": "zip",
  899. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  900. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  901. "shasum": ""
  902. },
  903. "require": {
  904. "doctrine/annotations": "1.*",
  905. "doctrine/cache": "1.*",
  906. "doctrine/collections": "1.*",
  907. "doctrine/inflector": "1.*",
  908. "doctrine/lexer": "1.*",
  909. "php": "~5.6|~7.0"
  910. },
  911. "require-dev": {
  912. "phpunit/phpunit": "^5.4.6"
  913. },
  914. "type": "library",
  915. "extra": {
  916. "branch-alias": {
  917. "dev-master": "2.7.x-dev"
  918. }
  919. },
  920. "autoload": {
  921. "psr-4": {
  922. "Doctrine\\Common\\": "lib/Doctrine/Common"
  923. }
  924. },
  925. "notification-url": "https://packagist.org/downloads/",
  926. "license": [
  927. "MIT"
  928. ],
  929. "authors": [
  930. {
  931. "name": "Roman Borschel",
  932. "email": "roman@code-factory.org"
  933. },
  934. {
  935. "name": "Benjamin Eberlei",
  936. "email": "kontakt@beberlei.de"
  937. },
  938. {
  939. "name": "Guilherme Blanco",
  940. "email": "guilhermeblanco@gmail.com"
  941. },
  942. {
  943. "name": "Jonathan Wage",
  944. "email": "jonwage@gmail.com"
  945. },
  946. {
  947. "name": "Johannes Schmitt",
  948. "email": "schmittjoh@gmail.com"
  949. }
  950. ],
  951. "description": "Common Library for Doctrine projects",
  952. "homepage": "http://www.doctrine-project.org",
  953. "keywords": [
  954. "annotations",
  955. "collections",
  956. "eventmanager",
  957. "persistence",
  958. "spl"
  959. ],
  960. "time": "2017-07-22T08:35:12+00:00"
  961. },
  962. {
  963. "name": "doctrine/inflector",
  964. "version": "v1.2.0",
  965. "source": {
  966. "type": "git",
  967. "url": "https://github.com/doctrine/inflector.git",
  968. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  969. },
  970. "dist": {
  971. "type": "zip",
  972. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  973. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  974. "shasum": ""
  975. },
  976. "require": {
  977. "php": "^7.0"
  978. },
  979. "require-dev": {
  980. "phpunit/phpunit": "^6.2"
  981. },
  982. "type": "library",
  983. "extra": {
  984. "branch-alias": {
  985. "dev-master": "1.2.x-dev"
  986. }
  987. },
  988. "autoload": {
  989. "psr-4": {
  990. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  991. }
  992. },
  993. "notification-url": "https://packagist.org/downloads/",
  994. "license": [
  995. "MIT"
  996. ],
  997. "authors": [
  998. {
  999. "name": "Roman Borschel",
  1000. "email": "roman@code-factory.org"
  1001. },
  1002. {
  1003. "name": "Benjamin Eberlei",
  1004. "email": "kontakt@beberlei.de"
  1005. },
  1006. {
  1007. "name": "Guilherme Blanco",
  1008. "email": "guilhermeblanco@gmail.com"
  1009. },
  1010. {
  1011. "name": "Jonathan Wage",
  1012. "email": "jonwage@gmail.com"
  1013. },
  1014. {
  1015. "name": "Johannes Schmitt",
  1016. "email": "schmittjoh@gmail.com"
  1017. }
  1018. ],
  1019. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1020. "homepage": "http://www.doctrine-project.org",
  1021. "keywords": [
  1022. "inflection",
  1023. "pluralize",
  1024. "singularize",
  1025. "string"
  1026. ],
  1027. "time": "2017-07-22T12:18:28+00:00"
  1028. },
  1029. {
  1030. "name": "doctrine/lexer",
  1031. "version": "v1.0.1",
  1032. "source": {
  1033. "type": "git",
  1034. "url": "https://github.com/doctrine/lexer.git",
  1035. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1036. },
  1037. "dist": {
  1038. "type": "zip",
  1039. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1040. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1041. "shasum": ""
  1042. },
  1043. "require": {
  1044. "php": ">=5.3.2"
  1045. },
  1046. "type": "library",
  1047. "extra": {
  1048. "branch-alias": {
  1049. "dev-master": "1.0.x-dev"
  1050. }
  1051. },
  1052. "autoload": {
  1053. "psr-0": {
  1054. "Doctrine\\Common\\Lexer\\": "lib/"
  1055. }
  1056. },
  1057. "notification-url": "https://packagist.org/downloads/",
  1058. "license": [
  1059. "MIT"
  1060. ],
  1061. "authors": [
  1062. {
  1063. "name": "Roman Borschel",
  1064. "email": "roman@code-factory.org"
  1065. },
  1066. {
  1067. "name": "Guilherme Blanco",
  1068. "email": "guilhermeblanco@gmail.com"
  1069. },
  1070. {
  1071. "name": "Johannes Schmitt",
  1072. "email": "schmittjoh@gmail.com"
  1073. }
  1074. ],
  1075. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1076. "homepage": "http://www.doctrine-project.org",
  1077. "keywords": [
  1078. "lexer",
  1079. "parser"
  1080. ],
  1081. "time": "2014-09-09T13:34:57+00:00"
  1082. },
  1083. {
  1084. "name": "drush/drush",
  1085. "version": "9.1.0",
  1086. "source": {
  1087. "type": "git",
  1088. "url": "https://github.com/drush-ops/drush.git",
  1089. "reference": "0380bba1ba88271caab8239edd640ee4ebaac3ee"
  1090. },
  1091. "dist": {
  1092. "type": "zip",
  1093. "url": "https://api.github.com/repos/drush-ops/drush/zipball/0380bba1ba88271caab8239edd640ee4ebaac3ee",
  1094. "reference": "0380bba1ba88271caab8239edd640ee4ebaac3ee",
  1095. "shasum": ""
  1096. },
  1097. "require": {
  1098. "chi-teck/drupal-code-generator": "^1.21.0",
  1099. "composer/semver": "^1.4",
  1100. "consolidation/annotated-command": "^2.8.1",
  1101. "consolidation/config": "^1.0.9",
  1102. "consolidation/output-formatters": "^3.1.12",
  1103. "consolidation/robo": "^1.1.5",
  1104. "ext-dom": "*",
  1105. "grasmash/yaml-expander": "^1.1.1",
  1106. "league/container": "~2",
  1107. "php": ">=5.6.0",
  1108. "psr/log": "~1.0",
  1109. "psy/psysh": "~0.6",
  1110. "sebastian/version": "^1|^2",
  1111. "symfony/config": "~2.2|^3",
  1112. "symfony/console": "~2.7|^3",
  1113. "symfony/event-dispatcher": "~2.7|^3",
  1114. "symfony/finder": "~2.7|^3",
  1115. "symfony/process": "~2.7|^3",
  1116. "symfony/var-dumper": "~2.7|^3",
  1117. "symfony/yaml": "~2.3|^3",
  1118. "webflo/drupal-finder": "^1.1",
  1119. "webmozart/path-util": "^2.1.0"
  1120. },
  1121. "require-dev": {
  1122. "lox/xhprof": "dev-master",
  1123. "phpunit/phpunit": "^4.8|^5.5.4",
  1124. "squizlabs/php_codesniffer": "^2.7"
  1125. },
  1126. "bin": [
  1127. "drush"
  1128. ],
  1129. "type": "library",
  1130. "extra": {
  1131. "branch-alias": {
  1132. "dev-master": "9.0.x-dev"
  1133. }
  1134. },
  1135. "autoload": {
  1136. "psr-4": {
  1137. "Drush\\": "src/",
  1138. "Drush\\Internal\\": "internal-copy/",
  1139. "Unish\\": "tests/"
  1140. }
  1141. },
  1142. "notification-url": "https://packagist.org/downloads/",
  1143. "license": [
  1144. "GPL-2.0-or-later"
  1145. ],
  1146. "authors": [
  1147. {
  1148. "name": "Moshe Weitzman",
  1149. "email": "weitzman@tejasa.com"
  1150. },
  1151. {
  1152. "name": "Owen Barton",
  1153. "email": "drupal@owenbarton.com"
  1154. },
  1155. {
  1156. "name": "Greg Anderson",
  1157. "email": "greg.1.anderson@greenknowe.org"
  1158. },
  1159. {
  1160. "name": "Jonathan Araña Cruz",
  1161. "email": "jonhattan@faita.net"
  1162. },
  1163. {
  1164. "name": "Jonathan Hedstrom",
  1165. "email": "jhedstrom@gmail.com"
  1166. },
  1167. {
  1168. "name": "Christopher Gervais",
  1169. "email": "chris@ergonlogic.com"
  1170. },
  1171. {
  1172. "name": "Dave Reid",
  1173. "email": "dave@davereid.net"
  1174. },
  1175. {
  1176. "name": "Damian Lee",
  1177. "email": "damiankloip@googlemail.com"
  1178. }
  1179. ],
  1180. "description": "Drush is a command line shell and scripting interface for Drupal, a veritable Swiss Army knife designed to make life easier for those of us who spend some of our working hours hacking away at the command prompt.",
  1181. "homepage": "http://www.drush.org",
  1182. "time": "2018-02-06T20:02:10+00:00"
  1183. },
  1184. {
  1185. "name": "easyrdf/easyrdf",
  1186. "version": "0.9.1",
  1187. "source": {
  1188. "type": "git",
  1189. "url": "https://github.com/njh/easyrdf.git",
  1190. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  1191. },
  1192. "dist": {
  1193. "type": "zip",
  1194. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  1195. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  1196. "shasum": ""
  1197. },
  1198. "require": {
  1199. "ext-mbstring": "*",
  1200. "ext-pcre": "*",
  1201. "php": ">=5.2.8"
  1202. },
  1203. "require-dev": {
  1204. "phpunit/phpunit": "~3.5",
  1205. "sami/sami": "~1.4",
  1206. "squizlabs/php_codesniffer": "~1.4.3"
  1207. },
  1208. "suggest": {
  1209. "ml/json-ld": "~1.0"
  1210. },
  1211. "type": "library",
  1212. "autoload": {
  1213. "psr-0": {
  1214. "EasyRdf_": "lib/"
  1215. }
  1216. },
  1217. "notification-url": "https://packagist.org/downloads/",
  1218. "license": [
  1219. "BSD-3-Clause"
  1220. ],
  1221. "authors": [
  1222. {
  1223. "name": "Nicholas Humfrey",
  1224. "email": "njh@aelius.com",
  1225. "homepage": "http://www.aelius.com/njh/",
  1226. "role": "Developer"
  1227. },
  1228. {
  1229. "name": "Alexey Zakhlestin",
  1230. "email": "indeyets@gmail.com",
  1231. "role": "Developer"
  1232. }
  1233. ],
  1234. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  1235. "homepage": "http://www.easyrdf.org/",
  1236. "keywords": [
  1237. "Linked Data",
  1238. "RDF",
  1239. "Semantic Web",
  1240. "Turtle",
  1241. "rdfa",
  1242. "sparql"
  1243. ],
  1244. "time": "2015-02-27T09:45:49+00:00"
  1245. },
  1246. {
  1247. "name": "egulias/email-validator",
  1248. "version": "1.2.14",
  1249. "source": {
  1250. "type": "git",
  1251. "url": "https://github.com/egulias/EmailValidator.git",
  1252. "reference": "5642614492f0ca2064c01d60cc33284cc2f731a9"
  1253. },
  1254. "dist": {
  1255. "type": "zip",
  1256. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/5642614492f0ca2064c01d60cc33284cc2f731a9",
  1257. "reference": "5642614492f0ca2064c01d60cc33284cc2f731a9",
  1258. "shasum": ""
  1259. },
  1260. "require": {
  1261. "doctrine/lexer": "^1.0.1",
  1262. "php": ">= 5.3.3"
  1263. },
  1264. "require-dev": {
  1265. "phpunit/phpunit": "^4.8.24"
  1266. },
  1267. "type": "library",
  1268. "extra": {
  1269. "branch-alias": {
  1270. "dev-master": "2.0.x-dev"
  1271. }
  1272. },
  1273. "autoload": {
  1274. "psr-0": {
  1275. "Egulias\\": "src/"
  1276. }
  1277. },
  1278. "notification-url": "https://packagist.org/downloads/",
  1279. "license": [
  1280. "MIT"
  1281. ],
  1282. "authors": [
  1283. {
  1284. "name": "Eduardo Gulias Davis"
  1285. }
  1286. ],
  1287. "description": "A library for validating emails",
  1288. "homepage": "https://github.com/egulias/EmailValidator",
  1289. "keywords": [
  1290. "email",
  1291. "emailvalidation",
  1292. "emailvalidator",
  1293. "validation",
  1294. "validator"
  1295. ],
  1296. "time": "2017-02-03T22:48:59+00:00"
  1297. },
  1298. {
  1299. "name": "grasmash/expander",
  1300. "version": "1.0.0",
  1301. "source": {
  1302. "type": "git",
  1303. "url": "https://github.com/grasmash/expander.git",
  1304. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  1305. },
  1306. "dist": {
  1307. "type": "zip",
  1308. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  1309. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  1310. "shasum": ""
  1311. },
  1312. "require": {
  1313. "dflydev/dot-access-data": "^1.1.0",
  1314. "php": ">=5.4"
  1315. },
  1316. "require-dev": {
  1317. "greg-1-anderson/composer-test-scenarios": "^1",
  1318. "phpunit/phpunit": "^4|^5.5.4",
  1319. "satooshi/php-coveralls": "^1.0.2|dev-master",
  1320. "squizlabs/php_codesniffer": "^2.7"
  1321. },
  1322. "type": "library",
  1323. "extra": {
  1324. "branch-alias": {
  1325. "dev-master": "1.x-dev"
  1326. }
  1327. },
  1328. "autoload": {
  1329. "psr-4": {
  1330. "Grasmash\\Expander\\": "src/"
  1331. }
  1332. },
  1333. "notification-url": "https://packagist.org/downloads/",
  1334. "license": [
  1335. "MIT"
  1336. ],
  1337. "authors": [
  1338. {
  1339. "name": "Matthew Grasmick"
  1340. }
  1341. ],
  1342. "description": "Expands internal property references in PHP arrays file.",
  1343. "time": "2017-12-21T22:14:55+00:00"
  1344. },
  1345. {
  1346. "name": "grasmash/yaml-expander",
  1347. "version": "1.4.0",
  1348. "source": {
  1349. "type": "git",
  1350. "url": "https://github.com/grasmash/yaml-expander.git",
  1351. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  1352. },
  1353. "dist": {
  1354. "type": "zip",
  1355. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  1356. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  1357. "shasum": ""
  1358. },
  1359. "require": {
  1360. "dflydev/dot-access-data": "^1.1.0",
  1361. "php": ">=5.4",
  1362. "symfony/yaml": "^2.8.11|^3|^4"
  1363. },
  1364. "require-dev": {
  1365. "greg-1-anderson/composer-test-scenarios": "^1",
  1366. "phpunit/phpunit": "^4.8|^5.5.4",
  1367. "satooshi/php-coveralls": "^1.0.2|dev-master",
  1368. "squizlabs/php_codesniffer": "^2.7"
  1369. },
  1370. "type": "library",
  1371. "extra": {
  1372. "branch-alias": {
  1373. "dev-master": "1.x-dev"
  1374. }
  1375. },
  1376. "autoload": {
  1377. "psr-4": {
  1378. "Grasmash\\YamlExpander\\": "src/"
  1379. }
  1380. },
  1381. "notification-url": "https://packagist.org/downloads/",
  1382. "license": [
  1383. "MIT"
  1384. ],
  1385. "authors": [
  1386. {
  1387. "name": "Matthew Grasmick"
  1388. }
  1389. ],
  1390. "description": "Expands internal property references in a yaml file.",
  1391. "time": "2017-12-16T16:06:03+00:00"
  1392. },
  1393. {
  1394. "name": "guzzlehttp/guzzle",
  1395. "version": "6.3.0",
  1396. "source": {
  1397. "type": "git",
  1398. "url": "https://github.com/guzzle/guzzle.git",
  1399. "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699"
  1400. },
  1401. "dist": {
  1402. "type": "zip",
  1403. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f4db5a78a5ea468d4831de7f0bf9d9415e348699",
  1404. "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699",
  1405. "shasum": ""
  1406. },
  1407. "require": {
  1408. "guzzlehttp/promises": "^1.0",
  1409. "guzzlehttp/psr7": "^1.4",
  1410. "php": ">=5.5"
  1411. },
  1412. "require-dev": {
  1413. "ext-curl": "*",
  1414. "phpunit/phpunit": "^4.0 || ^5.0",
  1415. "psr/log": "^1.0"
  1416. },
  1417. "suggest": {
  1418. "psr/log": "Required for using the Log middleware"
  1419. },
  1420. "type": "library",
  1421. "extra": {
  1422. "branch-alias": {
  1423. "dev-master": "6.2-dev"
  1424. }
  1425. },
  1426. "autoload": {
  1427. "files": [
  1428. "src/functions_include.php"
  1429. ],
  1430. "psr-4": {
  1431. "GuzzleHttp\\": "src/"
  1432. }
  1433. },
  1434. "notification-url": "https://packagist.org/downloads/",
  1435. "license": [
  1436. "MIT"
  1437. ],
  1438. "authors": [
  1439. {
  1440. "name": "Michael Dowling",
  1441. "email": "mtdowling@gmail.com",
  1442. "homepage": "https://github.com/mtdowling"
  1443. }
  1444. ],
  1445. "description": "Guzzle is a PHP HTTP client library",
  1446. "homepage": "http://guzzlephp.org/",
  1447. "keywords": [
  1448. "client",
  1449. "curl",
  1450. "framework",
  1451. "http",
  1452. "http client",
  1453. "rest",
  1454. "web service"
  1455. ],
  1456. "time": "2017-06-22T18:50:49+00:00"
  1457. },
  1458. {
  1459. "name": "guzzlehttp/promises",
  1460. "version": "v1.3.1",
  1461. "source": {
  1462. "type": "git",
  1463. "url": "https://github.com/guzzle/promises.git",
  1464. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  1465. },
  1466. "dist": {
  1467. "type": "zip",
  1468. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1469. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1470. "shasum": ""
  1471. },
  1472. "require": {
  1473. "php": ">=5.5.0"
  1474. },
  1475. "require-dev": {
  1476. "phpunit/phpunit": "^4.0"
  1477. },
  1478. "type": "library",
  1479. "extra": {
  1480. "branch-alias": {
  1481. "dev-master": "1.4-dev"
  1482. }
  1483. },
  1484. "autoload": {
  1485. "psr-4": {
  1486. "GuzzleHttp\\Promise\\": "src/"
  1487. },
  1488. "files": [
  1489. "src/functions_include.php"
  1490. ]
  1491. },
  1492. "notification-url": "https://packagist.org/downloads/",
  1493. "license": [
  1494. "MIT"
  1495. ],
  1496. "authors": [
  1497. {
  1498. "name": "Michael Dowling",
  1499. "email": "mtdowling@gmail.com",
  1500. "homepage": "https://github.com/mtdowling"
  1501. }
  1502. ],
  1503. "description": "Guzzle promises library",
  1504. "keywords": [
  1505. "promise"
  1506. ],
  1507. "time": "2016-12-20T10:07:11+00:00"
  1508. },
  1509. {
  1510. "name": "guzzlehttp/psr7",
  1511. "version": "1.4.2",
  1512. "source": {
  1513. "type": "git",
  1514. "url": "https://github.com/guzzle/psr7.git",
  1515. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  1516. },
  1517. "dist": {
  1518. "type": "zip",
  1519. "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  1520. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  1521. "shasum": ""
  1522. },
  1523. "require": {
  1524. "php": ">=5.4.0",
  1525. "psr/http-message": "~1.0"
  1526. },
  1527. "provide": {
  1528. "psr/http-message-implementation": "1.0"
  1529. },
  1530. "require-dev": {
  1531. "phpunit/phpunit": "~4.0"
  1532. },
  1533. "type": "library",
  1534. "extra": {
  1535. "branch-alias": {
  1536. "dev-master": "1.4-dev"
  1537. }
  1538. },
  1539. "autoload": {
  1540. "psr-4": {
  1541. "GuzzleHttp\\Psr7\\": "src/"
  1542. },
  1543. "files": [
  1544. "src/functions_include.php"
  1545. ]
  1546. },
  1547. "notification-url": "https://packagist.org/downloads/",
  1548. "license": [
  1549. "MIT"
  1550. ],
  1551. "authors": [
  1552. {
  1553. "name": "Michael Dowling",
  1554. "email": "mtdowling@gmail.com",
  1555. "homepage": "https://github.com/mtdowling"
  1556. },
  1557. {
  1558. "name": "Tobias Schultze",
  1559. "homepage": "https://github.com/Tobion"
  1560. }
  1561. ],
  1562. "description": "PSR-7 message implementation that also provides common utility methods",
  1563. "keywords": [
  1564. "http",
  1565. "message",
  1566. "request",
  1567. "response",
  1568. "stream",
  1569. "uri",
  1570. "url"
  1571. ],
  1572. "time": "2017-03-20T17:10:46+00:00"
  1573. },
  1574. {
  1575. "name": "jakub-onderka/php-console-color",
  1576. "version": "0.1",
  1577. "source": {
  1578. "type": "git",
  1579. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  1580. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1"
  1581. },
  1582. "dist": {
  1583. "type": "zip",
  1584. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/e0b393dacf7703fc36a4efc3df1435485197e6c1",
  1585. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1",
  1586. "shasum": ""
  1587. },
  1588. "require": {
  1589. "php": ">=5.3.2"
  1590. },
  1591. "require-dev": {
  1592. "jakub-onderka/php-code-style": "1.0",
  1593. "jakub-onderka/php-parallel-lint": "0.*",
  1594. "jakub-onderka/php-var-dump-check": "0.*",
  1595. "phpunit/phpunit": "3.7.*",
  1596. "squizlabs/php_codesniffer": "1.*"
  1597. },
  1598. "type": "library",
  1599. "autoload": {
  1600. "psr-0": {
  1601. "JakubOnderka\\PhpConsoleColor": "src/"
  1602. }
  1603. },
  1604. "notification-url": "https://packagist.org/downloads/",
  1605. "license": [
  1606. "BSD-2-Clause"
  1607. ],
  1608. "authors": [
  1609. {
  1610. "name": "Jakub Onderka",
  1611. "email": "jakub.onderka@gmail.com",
  1612. "homepage": "http://www.acci.cz"
  1613. }
  1614. ],
  1615. "time": "2014-04-08T15:00:19+00:00"
  1616. },
  1617. {
  1618. "name": "jakub-onderka/php-console-highlighter",
  1619. "version": "v0.3.2",
  1620. "source": {
  1621. "type": "git",
  1622. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  1623. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5"
  1624. },
  1625. "dist": {
  1626. "type": "zip",
  1627. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  1628. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  1629. "shasum": ""
  1630. },
  1631. "require": {
  1632. "jakub-onderka/php-console-color": "~0.1",
  1633. "php": ">=5.3.0"
  1634. },
  1635. "require-dev": {
  1636. "jakub-onderka/php-code-style": "~1.0",
  1637. "jakub-onderka/php-parallel-lint": "~0.5",
  1638. "jakub-onderka/php-var-dump-check": "~0.1",
  1639. "phpunit/phpunit": "~4.0",
  1640. "squizlabs/php_codesniffer": "~1.5"
  1641. },
  1642. "type": "library",
  1643. "autoload": {
  1644. "psr-0": {
  1645. "JakubOnderka\\PhpConsoleHighlighter": "src/"
  1646. }
  1647. },
  1648. "notification-url": "https://packagist.org/downloads/",
  1649. "license": [
  1650. "MIT"
  1651. ],
  1652. "authors": [
  1653. {
  1654. "name": "Jakub Onderka",
  1655. "email": "acci@acci.cz",
  1656. "homepage": "http://www.acci.cz/"
  1657. }
  1658. ],
  1659. "time": "2015-04-20T18:58:01+00:00"
  1660. },
  1661. {
  1662. "name": "league/container",
  1663. "version": "2.4.1",
  1664. "source": {
  1665. "type": "git",
  1666. "url": "https://github.com/thephpleague/container.git",
  1667. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  1668. },
  1669. "dist": {
  1670. "type": "zip",
  1671. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  1672. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  1673. "shasum": ""
  1674. },
  1675. "require": {
  1676. "container-interop/container-interop": "^1.2",
  1677. "php": "^5.4.0 || ^7.0"
  1678. },
  1679. "provide": {
  1680. "container-interop/container-interop-implementation": "^1.2",
  1681. "psr/container-implementation": "^1.0"
  1682. },
  1683. "replace": {
  1684. "orno/di": "~2.0"
  1685. },
  1686. "require-dev": {
  1687. "phpunit/phpunit": "4.*"
  1688. },
  1689. "type": "library",
  1690. "extra": {
  1691. "branch-alias": {
  1692. "dev-2.x": "2.x-dev",
  1693. "dev-1.x": "1.x-dev"
  1694. }
  1695. },
  1696. "autoload": {
  1697. "psr-4": {
  1698. "League\\Container\\": "src"
  1699. }
  1700. },
  1701. "notification-url": "https://packagist.org/downloads/",
  1702. "license": [
  1703. "MIT"
  1704. ],
  1705. "authors": [
  1706. {
  1707. "name": "Phil Bennett",
  1708. "email": "philipobenito@gmail.com",
  1709. "homepage": "http://www.philipobenito.com",
  1710. "role": "Developer"
  1711. }
  1712. ],
  1713. "description": "A fast and intuitive dependency injection container.",
  1714. "homepage": "https://github.com/thephpleague/container",
  1715. "keywords": [
  1716. "container",
  1717. "dependency",
  1718. "di",
  1719. "injection",
  1720. "league",
  1721. "provider",
  1722. "service"
  1723. ],
  1724. "time": "2017-05-10T09:20:27+00:00"
  1725. },
  1726. {
  1727. "name": "masterminds/html5",
  1728. "version": "2.3.0",
  1729. "source": {
  1730. "type": "git",
  1731. "url": "https://github.com/Masterminds/html5-php.git",
  1732. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  1733. },
  1734. "dist": {
  1735. "type": "zip",
  1736. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  1737. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  1738. "shasum": ""
  1739. },
  1740. "require": {
  1741. "ext-libxml": "*",
  1742. "php": ">=5.3.0"
  1743. },
  1744. "require-dev": {
  1745. "phpunit/phpunit": "4.*",
  1746. "sami/sami": "~2.0",
  1747. "satooshi/php-coveralls": "1.0.*"
  1748. },
  1749. "type": "library",
  1750. "extra": {
  1751. "branch-alias": {
  1752. "dev-master": "2.2-dev"
  1753. }
  1754. },
  1755. "autoload": {
  1756. "psr-4": {
  1757. "Masterminds\\": "src"
  1758. }
  1759. },
  1760. "notification-url": "https://packagist.org/downloads/",
  1761. "license": [
  1762. "MIT"
  1763. ],
  1764. "authors": [
  1765. {
  1766. "name": "Matt Butcher",
  1767. "email": "technosophos@gmail.com"
  1768. },
  1769. {
  1770. "name": "Asmir Mustafic",
  1771. "email": "goetas@gmail.com"
  1772. },
  1773. {
  1774. "name": "Matt Farina",
  1775. "email": "matt@mattfarina.com"
  1776. }
  1777. ],
  1778. "description": "An HTML5 parser and serializer.",
  1779. "homepage": "http://masterminds.github.io/html5-php",
  1780. "keywords": [
  1781. "HTML5",
  1782. "dom",
  1783. "html",
  1784. "parser",
  1785. "querypath",
  1786. "serializer",
  1787. "xml"
  1788. ],
  1789. "time": "2017-09-04T12:26:28+00:00"
  1790. },
  1791. {
  1792. "name": "nikic/php-parser",
  1793. "version": "v3.1.4",
  1794. "source": {
  1795. "type": "git",
  1796. "url": "https://github.com/nikic/PHP-Parser.git",
  1797. "reference": "e57b3a09784f846411aa7ed664eedb73e3399078"
  1798. },
  1799. "dist": {
  1800. "type": "zip",
  1801. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/e57b3a09784f846411aa7ed664eedb73e3399078",
  1802. "reference": "e57b3a09784f846411aa7ed664eedb73e3399078",
  1803. "shasum": ""
  1804. },
  1805. "require": {
  1806. "ext-tokenizer": "*",
  1807. "php": ">=5.5"
  1808. },
  1809. "require-dev": {
  1810. "phpunit/phpunit": "~4.0|~5.0"
  1811. },
  1812. "bin": [
  1813. "bin/php-parse"
  1814. ],
  1815. "type": "library",
  1816. "extra": {
  1817. "branch-alias": {
  1818. "dev-master": "3.0-dev"
  1819. }
  1820. },
  1821. "autoload": {
  1822. "psr-4": {
  1823. "PhpParser\\": "lib/PhpParser"
  1824. }
  1825. },
  1826. "notification-url": "https://packagist.org/downloads/",
  1827. "license": [
  1828. "BSD-3-Clause"
  1829. ],
  1830. "authors": [
  1831. {
  1832. "name": "Nikita Popov"
  1833. }
  1834. ],
  1835. "description": "A PHP parser written in PHP",
  1836. "keywords": [
  1837. "parser",
  1838. "php"
  1839. ],
  1840. "time": "2018-01-25T21:31:33+00:00"
  1841. },
  1842. {
  1843. "name": "paragonie/random_compat",
  1844. "version": "v2.0.11",
  1845. "source": {
  1846. "type": "git",
  1847. "url": "https://github.com/paragonie/random_compat.git",
  1848. "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8"
  1849. },
  1850. "dist": {
  1851. "type": "zip",
  1852. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/5da4d3c796c275c55f057af5a643ae297d96b4d8",
  1853. "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8",
  1854. "shasum": ""
  1855. },
  1856. "require": {
  1857. "php": ">=5.2.0"
  1858. },
  1859. "require-dev": {
  1860. "phpunit/phpunit": "4.*|5.*"
  1861. },
  1862. "suggest": {
  1863. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1864. },
  1865. "type": "library",
  1866. "autoload": {
  1867. "files": [
  1868. "lib/random.php"
  1869. ]
  1870. },
  1871. "notification-url": "https://packagist.org/downloads/",
  1872. "license": [
  1873. "MIT"
  1874. ],
  1875. "authors": [
  1876. {
  1877. "name": "Paragon Initiative Enterprises",
  1878. "email": "security@paragonie.com",
  1879. "homepage": "https://paragonie.com"
  1880. }
  1881. ],
  1882. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1883. "keywords": [
  1884. "csprng",
  1885. "pseudorandom",
  1886. "random"
  1887. ],
  1888. "time": "2017-09-27T21:40:39+00:00"
  1889. },
  1890. {
  1891. "name": "psr/container",
  1892. "version": "1.0.0",
  1893. "source": {
  1894. "type": "git",
  1895. "url": "https://github.com/php-fig/container.git",
  1896. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1897. },
  1898. "dist": {
  1899. "type": "zip",
  1900. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1901. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1902. "shasum": ""
  1903. },
  1904. "require": {
  1905. "php": ">=5.3.0"
  1906. },
  1907. "type": "library",
  1908. "extra": {
  1909. "branch-alias": {
  1910. "dev-master": "1.0.x-dev"
  1911. }
  1912. },
  1913. "autoload": {
  1914. "psr-4": {
  1915. "Psr\\Container\\": "src/"
  1916. }
  1917. },
  1918. "notification-url": "https://packagist.org/downloads/",
  1919. "license": [
  1920. "MIT"
  1921. ],
  1922. "authors": [
  1923. {
  1924. "name": "PHP-FIG",
  1925. "homepage": "http://www.php-fig.org/"
  1926. }
  1927. ],
  1928. "description": "Common Container Interface (PHP FIG PSR-11)",
  1929. "homepage": "https://github.com/php-fig/container",
  1930. "keywords": [
  1931. "PSR-11",
  1932. "container",
  1933. "container-interface",
  1934. "container-interop",
  1935. "psr"
  1936. ],
  1937. "time": "2017-02-14T16:28:37+00:00"
  1938. },
  1939. {
  1940. "name": "psr/http-message",
  1941. "version": "1.0.1",
  1942. "source": {
  1943. "type": "git",
  1944. "url": "https://github.com/php-fig/http-message.git",
  1945. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1946. },
  1947. "dist": {
  1948. "type": "zip",
  1949. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1950. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1951. "shasum": ""
  1952. },
  1953. "require": {
  1954. "php": ">=5.3.0"
  1955. },
  1956. "type": "library",
  1957. "extra": {
  1958. "branch-alias": {
  1959. "dev-master": "1.0.x-dev"
  1960. }
  1961. },
  1962. "autoload": {
  1963. "psr-4": {
  1964. "Psr\\Http\\Message\\": "src/"
  1965. }
  1966. },
  1967. "notification-url": "https://packagist.org/downloads/",
  1968. "license": [
  1969. "MIT"
  1970. ],
  1971. "authors": [
  1972. {
  1973. "name": "PHP-FIG",
  1974. "homepage": "http://www.php-fig.org/"
  1975. }
  1976. ],
  1977. "description": "Common interface for HTTP messages",
  1978. "homepage": "https://github.com/php-fig/http-message",
  1979. "keywords": [
  1980. "http",
  1981. "http-message",
  1982. "psr",
  1983. "psr-7",
  1984. "request",
  1985. "response"
  1986. ],
  1987. "time": "2016-08-06T14:39:51+00:00"
  1988. },
  1989. {
  1990. "name": "psr/log",
  1991. "version": "1.0.2",
  1992. "source": {
  1993. "type": "git",
  1994. "url": "https://github.com/php-fig/log.git",
  1995. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1996. },
  1997. "dist": {
  1998. "type": "zip",
  1999. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  2000. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  2001. "shasum": ""
  2002. },
  2003. "require": {
  2004. "php": ">=5.3.0"
  2005. },
  2006. "type": "library",
  2007. "extra": {
  2008. "branch-alias": {
  2009. "dev-master": "1.0.x-dev"
  2010. }
  2011. },
  2012. "autoload": {
  2013. "psr-4": {
  2014. "Psr\\Log\\": "Psr/Log/"
  2015. }
  2016. },
  2017. "notification-url": "https://packagist.org/downloads/",
  2018. "license": [
  2019. "MIT"
  2020. ],
  2021. "authors": [
  2022. {
  2023. "name": "PHP-FIG",
  2024. "homepage": "http://www.php-fig.org/"
  2025. }
  2026. ],
  2027. "description": "Common interface for logging libraries",
  2028. "homepage": "https://github.com/php-fig/log",
  2029. "keywords": [
  2030. "log",
  2031. "psr",
  2032. "psr-3"
  2033. ],
  2034. "time": "2016-10-10T12:19:37+00:00"
  2035. },
  2036. {
  2037. "name": "psy/psysh",
  2038. "version": "v0.8.17",
  2039. "source": {
  2040. "type": "git",
  2041. "url": "https://github.com/bobthecow/psysh.git",
  2042. "reference": "5069b70e8c4ea492c2b5939b6eddc78bfe41cfec"
  2043. },
  2044. "dist": {
  2045. "type": "zip",
  2046. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/5069b70e8c4ea492c2b5939b6eddc78bfe41cfec",
  2047. "reference": "5069b70e8c4ea492c2b5939b6eddc78bfe41cfec",
  2048. "shasum": ""
  2049. },
  2050. "require": {
  2051. "dnoegel/php-xdg-base-dir": "0.1",
  2052. "jakub-onderka/php-console-highlighter": "0.3.*",
  2053. "nikic/php-parser": "~1.3|~2.0|~3.0",
  2054. "php": ">=5.3.9",
  2055. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  2056. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  2057. },
  2058. "require-dev": {
  2059. "hoa/console": "~3.16|~1.14",
  2060. "phpunit/phpunit": "^4.8.35|^5.4.3",
  2061. "symfony/finder": "~2.1|~3.0|~4.0"
  2062. },
  2063. "suggest": {
  2064. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2065. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2066. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2067. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  2068. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  2069. },
  2070. "bin": [
  2071. "bin/psysh"
  2072. ],
  2073. "type": "library",
  2074. "extra": {
  2075. "branch-alias": {
  2076. "dev-develop": "0.8.x-dev"
  2077. }
  2078. },
  2079. "autoload": {
  2080. "files": [
  2081. "src/Psy/functions.php"
  2082. ],
  2083. "psr-4": {
  2084. "Psy\\": "src/Psy/"
  2085. }
  2086. },
  2087. "notification-url": "https://packagist.org/downloads/",
  2088. "license": [
  2089. "MIT"
  2090. ],
  2091. "authors": [
  2092. {
  2093. "name": "Justin Hileman",
  2094. "email": "justin@justinhileman.info",
  2095. "homepage": "http://justinhileman.com"
  2096. }
  2097. ],
  2098. "description": "An interactive shell for modern PHP.",
  2099. "homepage": "http://psysh.org",
  2100. "keywords": [
  2101. "REPL",
  2102. "console",
  2103. "interactive",
  2104. "shell"
  2105. ],
  2106. "time": "2017-12-28T16:14:16+00:00"
  2107. },
  2108. {
  2109. "name": "sebastian/version",
  2110. "version": "1.0.6",
  2111. "source": {
  2112. "type": "git",
  2113. "url": "https://github.com/sebastianbergmann/version.git",
  2114. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
  2115. },
  2116. "dist": {
  2117. "type": "zip",
  2118. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  2119. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  2120. "shasum": ""
  2121. },
  2122. "type": "library",
  2123. "autoload": {
  2124. "classmap": [
  2125. "src/"
  2126. ]
  2127. },
  2128. "notification-url": "https://packagist.org/downloads/",
  2129. "license": [
  2130. "BSD-3-Clause"
  2131. ],
  2132. "authors": [
  2133. {
  2134. "name": "Sebastian Bergmann",
  2135. "email": "sebastian@phpunit.de",
  2136. "role": "lead"
  2137. }
  2138. ],
  2139. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2140. "homepage": "https://github.com/sebastianbergmann/version",
  2141. "time": "2015-06-21T13:59:46+00:00"
  2142. },
  2143. {
  2144. "name": "stack/builder",
  2145. "version": "v1.0.5",
  2146. "source": {
  2147. "type": "git",
  2148. "url": "https://github.com/stackphp/builder.git",
  2149. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  2150. },
  2151. "dist": {
  2152. "type": "zip",
  2153. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  2154. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  2155. "shasum": ""
  2156. },
  2157. "require": {
  2158. "php": ">=5.3.0",
  2159. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  2160. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  2161. },
  2162. "require-dev": {
  2163. "silex/silex": "~1.0"
  2164. },
  2165. "type": "library",
  2166. "extra": {
  2167. "branch-alias": {
  2168. "dev-master": "1.0-dev"
  2169. }
  2170. },
  2171. "autoload": {
  2172. "psr-0": {
  2173. "Stack": "src"
  2174. }
  2175. },
  2176. "notification-url": "https://packagist.org/downloads/",
  2177. "license": [
  2178. "MIT"
  2179. ],
  2180. "authors": [
  2181. {
  2182. "name": "Igor Wiedler",
  2183. "email": "igor@wiedler.ch"
  2184. }
  2185. ],
  2186. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  2187. "keywords": [
  2188. "stack"
  2189. ],
  2190. "time": "2017-11-18T14:57:29+00:00"
  2191. },
  2192. {
  2193. "name": "symfony-cmf/routing",
  2194. "version": "1.4.1",
  2195. "source": {
  2196. "type": "git",
  2197. "url": "https://github.com/symfony-cmf/routing.git",
  2198. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  2199. },
  2200. "dist": {
  2201. "type": "zip",
  2202. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  2203. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  2204. "shasum": ""
  2205. },
  2206. "require": {
  2207. "php": "^5.3.9|^7.0",
  2208. "psr/log": "1.*",
  2209. "symfony/http-kernel": "^2.2|3.*",
  2210. "symfony/routing": "^2.2|3.*"
  2211. },
  2212. "require-dev": {
  2213. "friendsofsymfony/jsrouting-bundle": "^1.1",
  2214. "symfony-cmf/testing": "^1.3",
  2215. "symfony/config": "^2.2|3.*",
  2216. "symfony/dependency-injection": "^2.0.5|3.*",
  2217. "symfony/event-dispatcher": "^2.1|3.*"
  2218. },
  2219. "suggest": {
  2220. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  2221. },
  2222. "type": "library",
  2223. "extra": {
  2224. "branch-alias": {
  2225. "dev-master": "1.4-dev"
  2226. }
  2227. },
  2228. "autoload": {
  2229. "psr-4": {
  2230. "Symfony\\Cmf\\Component\\Routing\\": ""
  2231. }
  2232. },
  2233. "notification-url": "https://packagist.org/downloads/",
  2234. "license": [
  2235. "MIT"
  2236. ],
  2237. "authors": [
  2238. {
  2239. "name": "Symfony CMF Community",
  2240. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  2241. }
  2242. ],
  2243. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  2244. "homepage": "http://cmf.symfony.com",
  2245. "keywords": [
  2246. "database",
  2247. "routing"
  2248. ],
  2249. "time": "2017-05-09T08:10:41+00:00"
  2250. },
  2251. {
  2252. "name": "symfony/class-loader",
  2253. "version": "v3.2.14",
  2254. "source": {
  2255. "type": "git",
  2256. "url": "https://github.com/symfony/class-loader.git",
  2257. "reference": "e192d96b15fdd168bdb1c91001d26c93ba4af482"
  2258. },
  2259. "dist": {
  2260. "type": "zip",
  2261. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e192d96b15fdd168bdb1c91001d26c93ba4af482",
  2262. "reference": "e192d96b15fdd168bdb1c91001d26c93ba4af482",
  2263. "shasum": ""
  2264. },
  2265. "require": {
  2266. "php": ">=5.5.9"
  2267. },
  2268. "require-dev": {
  2269. "symfony/finder": "~2.8|~3.0",
  2270. "symfony/polyfill-apcu": "~1.1"
  2271. },
  2272. "suggest": {
  2273. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  2274. },
  2275. "type": "library",
  2276. "extra": {
  2277. "branch-alias": {
  2278. "dev-master": "3.2-dev"
  2279. }
  2280. },
  2281. "autoload": {
  2282. "psr-4": {
  2283. "Symfony\\Component\\ClassLoader\\": ""
  2284. },
  2285. "exclude-from-classmap": [
  2286. "/Tests/"
  2287. ]
  2288. },
  2289. "notification-url": "https://packagist.org/downloads/",
  2290. "license": [
  2291. "MIT"
  2292. ],
  2293. "authors": [
  2294. {
  2295. "name": "Fabien Potencier",
  2296. "email": "fabien@symfony.com"
  2297. },
  2298. {
  2299. "name": "Symfony Community",
  2300. "homepage": "https://symfony.com/contributors"
  2301. }
  2302. ],
  2303. "description": "Symfony ClassLoader Component",
  2304. "homepage": "https://symfony.com",
  2305. "time": "2017-06-01T21:00:24+00:00"
  2306. },
  2307. {
  2308. "name": "symfony/config",
  2309. "version": "v3.2.14",
  2310. "source": {
  2311. "type": "git",
  2312. "url": "https://github.com/symfony/config.git",
  2313. "reference": "e5533fcc0b3dd377626153b2852707878f363728"
  2314. },
  2315. "dist": {
  2316. "type": "zip",
  2317. "url": "https://api.github.com/repos/symfony/config/zipball/e5533fcc0b3dd377626153b2852707878f363728",
  2318. "reference": "e5533fcc0b3dd377626153b2852707878f363728",
  2319. "shasum": ""
  2320. },
  2321. "require": {
  2322. "php": ">=5.5.9",
  2323. "symfony/filesystem": "~2.8|~3.0"
  2324. },
  2325. "require-dev": {
  2326. "symfony/yaml": "~3.0"
  2327. },
  2328. "suggest": {
  2329. "symfony/yaml": "To use the yaml reference dumper"
  2330. },
  2331. "type": "library",
  2332. "extra": {
  2333. "branch-alias": {
  2334. "dev-master": "3.2-dev"
  2335. }
  2336. },
  2337. "autoload": {
  2338. "psr-4": {
  2339. "Symfony\\Component\\Config\\": ""
  2340. },
  2341. "exclude-from-classmap": [
  2342. "/Tests/"
  2343. ]
  2344. },
  2345. "notification-url": "https://packagist.org/downloads/",
  2346. "license": [
  2347. "MIT"
  2348. ],
  2349. "authors": [
  2350. {
  2351. "name": "Fabien Potencier",
  2352. "email": "fabien@symfony.com"
  2353. },
  2354. {
  2355. "name": "Symfony Community",
  2356. "homepage": "https://symfony.com/contributors"
  2357. }
  2358. ],
  2359. "description": "Symfony Config Component",
  2360. "homepage": "https://symfony.com",
  2361. "time": "2017-04-12T14:13:17+00:00"
  2362. },
  2363. {
  2364. "name": "symfony/console",
  2365. "version": "v3.2.14",
  2366. "source": {
  2367. "type": "git",
  2368. "url": "https://github.com/symfony/console.git",
  2369. "reference": "eced439413608647aeff243038a33ea246b2b33a"
  2370. },
  2371. "dist": {
  2372. "type": "zip",
  2373. "url": "https://api.github.com/repos/symfony/console/zipball/eced439413608647aeff243038a33ea246b2b33a",
  2374. "reference": "eced439413608647aeff243038a33ea246b2b33a",
  2375. "shasum": ""
  2376. },
  2377. "require": {
  2378. "php": ">=5.5.9",
  2379. "symfony/debug": "~2.8|~3.0",
  2380. "symfony/polyfill-mbstring": "~1.0"
  2381. },
  2382. "require-dev": {
  2383. "psr/log": "~1.0",
  2384. "symfony/event-dispatcher": "~2.8|~3.0",
  2385. "symfony/filesystem": "~2.8|~3.0",
  2386. "symfony/process": "~2.8|~3.0"
  2387. },
  2388. "suggest": {
  2389. "psr/log": "For using the console logger",
  2390. "symfony/event-dispatcher": "",
  2391. "symfony/filesystem": "",
  2392. "symfony/process": ""
  2393. },
  2394. "type": "library",
  2395. "extra": {
  2396. "branch-alias": {
  2397. "dev-master": "3.2-dev"
  2398. }
  2399. },
  2400. "autoload": {
  2401. "psr-4": {
  2402. "Symfony\\Component\\Console\\": ""
  2403. },
  2404. "exclude-from-classmap": [
  2405. "/Tests/"
  2406. ]
  2407. },
  2408. "notification-url": "https://packagist.org/downloads/",
  2409. "license": [
  2410. "MIT"
  2411. ],
  2412. "authors": [
  2413. {
  2414. "name": "Fabien Potencier",
  2415. "email": "fabien@symfony.com"
  2416. },
  2417. {
  2418. "name": "Symfony Community",
  2419. "homepage": "https://symfony.com/contributors"
  2420. }
  2421. ],
  2422. "description": "Symfony Console Component",
  2423. "homepage": "https://symfony.com",
  2424. "time": "2017-07-29T21:27:41+00:00"
  2425. },
  2426. {
  2427. "name": "symfony/debug",
  2428. "version": "v3.4.3",
  2429. "source": {
  2430. "type": "git",
  2431. "url": "https://github.com/symfony/debug.git",
  2432. "reference": "603b95dda8b00020e4e6e60dc906e7b715b1c245"
  2433. },
  2434. "dist": {
  2435. "type": "zip",
  2436. "url": "https://api.github.com/repos/symfony/debug/zipball/603b95dda8b00020e4e6e60dc906e7b715b1c245",
  2437. "reference": "603b95dda8b00020e4e6e60dc906e7b715b1c245",
  2438. "shasum": ""
  2439. },
  2440. "require": {
  2441. "php": "^5.5.9|>=7.0.8",
  2442. "psr/log": "~1.0"
  2443. },
  2444. "conflict": {
  2445. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  2446. },
  2447. "require-dev": {
  2448. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  2449. },
  2450. "type": "library",
  2451. "extra": {
  2452. "branch-alias": {
  2453. "dev-master": "3.4-dev"
  2454. }
  2455. },
  2456. "autoload": {
  2457. "psr-4": {
  2458. "Symfony\\Component\\Debug\\": ""
  2459. },
  2460. "exclude-from-classmap": [
  2461. "/Tests/"
  2462. ]
  2463. },
  2464. "notification-url": "https://packagist.org/downloads/",
  2465. "license": [
  2466. "MIT"
  2467. ],
  2468. "authors": [
  2469. {
  2470. "name": "Fabien Potencier",
  2471. "email": "fabien@symfony.com"
  2472. },
  2473. {
  2474. "name": "Symfony Community",
  2475. "homepage": "https://symfony.com/contributors"
  2476. }
  2477. ],
  2478. "description": "Symfony Debug Component",
  2479. "homepage": "https://symfony.com",
  2480. "time": "2018-01-03T17:14:19+00:00"
  2481. },
  2482. {
  2483. "name": "symfony/dependency-injection",
  2484. "version": "v3.2.14",
  2485. "source": {
  2486. "type": "git",
  2487. "url": "https://github.com/symfony/dependency-injection.git",
  2488. "reference": "d9f2e62e1a93d52ad4e4f6faaf66f6eef723d761"
  2489. },
  2490. "dist": {
  2491. "type": "zip",
  2492. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d9f2e62e1a93d52ad4e4f6faaf66f6eef723d761",
  2493. "reference": "d9f2e62e1a93d52ad4e4f6faaf66f6eef723d761",
  2494. "shasum": ""
  2495. },
  2496. "require": {
  2497. "php": ">=5.5.9"
  2498. },
  2499. "conflict": {
  2500. "symfony/yaml": "<3.2"
  2501. },
  2502. "require-dev": {
  2503. "symfony/config": "~2.8|~3.0",
  2504. "symfony/expression-language": "~2.8|~3.0",
  2505. "symfony/yaml": "~3.2"
  2506. },
  2507. "suggest": {
  2508. "symfony/config": "",
  2509. "symfony/expression-language": "For using expressions in service container configuration",
  2510. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  2511. "symfony/yaml": ""
  2512. },
  2513. "type": "library",
  2514. "extra": {
  2515. "branch-alias": {
  2516. "dev-master": "3.2-dev"
  2517. }
  2518. },
  2519. "autoload": {
  2520. "psr-4": {
  2521. "Symfony\\Component\\DependencyInjection\\": ""
  2522. },
  2523. "exclude-from-classmap": [
  2524. "/Tests/"
  2525. ]
  2526. },
  2527. "notification-url": "https://packagist.org/downloads/",
  2528. "license": [
  2529. "MIT"
  2530. ],
  2531. "authors": [
  2532. {
  2533. "name": "Fabien Potencier",
  2534. "email": "fabien@symfony.com"
  2535. },
  2536. {
  2537. "name": "Symfony Community",
  2538. "homepage": "https://symfony.com/contributors"
  2539. }
  2540. ],
  2541. "description": "Symfony DependencyInjection Component",
  2542. "homepage": "https://symfony.com",
  2543. "time": "2017-07-28T15:22:55+00:00"
  2544. },
  2545. {
  2546. "name": "symfony/event-dispatcher",
  2547. "version": "v3.2.14",
  2548. "source": {
  2549. "type": "git",
  2550. "url": "https://github.com/symfony/event-dispatcher.git",
  2551. "reference": "b8de6ee252af19330dd72ad5fc0dd4658a1d6325"
  2552. },
  2553. "dist": {
  2554. "type": "zip",
  2555. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b8de6ee252af19330dd72ad5fc0dd4658a1d6325",
  2556. "reference": "b8de6ee252af19330dd72ad5fc0dd4658a1d6325",
  2557. "shasum": ""
  2558. },
  2559. "require": {
  2560. "php": ">=5.5.9"
  2561. },
  2562. "require-dev": {
  2563. "psr/log": "~1.0",
  2564. "symfony/config": "~2.8|~3.0",
  2565. "symfony/dependency-injection": "~2.8|~3.0",
  2566. "symfony/expression-language": "~2.8|~3.0",
  2567. "symfony/stopwatch": "~2.8|~3.0"
  2568. },
  2569. "suggest": {
  2570. "symfony/dependency-injection": "",
  2571. "symfony/http-kernel": ""
  2572. },
  2573. "type": "library",
  2574. "extra": {
  2575. "branch-alias": {
  2576. "dev-master": "3.2-dev"
  2577. }
  2578. },
  2579. "autoload": {
  2580. "psr-4": {
  2581. "Symfony\\Component\\EventDispatcher\\": ""
  2582. },
  2583. "exclude-from-classmap": [
  2584. "/Tests/"
  2585. ]
  2586. },
  2587. "notification-url": "https://packagist.org/downloads/",
  2588. "license": [
  2589. "MIT"
  2590. ],
  2591. "authors": [
  2592. {
  2593. "name": "Fabien Potencier",
  2594. "email": "fabien@symfony.com"
  2595. },
  2596. {
  2597. "name": "Symfony Community",
  2598. "homepage": "https://symfony.com/contributors"
  2599. }
  2600. ],
  2601. "description": "Symfony EventDispatcher Component",
  2602. "homepage": "https://symfony.com",
  2603. "time": "2017-06-02T08:26:05+00:00"
  2604. },
  2605. {
  2606. "name": "symfony/filesystem",
  2607. "version": "v3.4.4",
  2608. "source": {
  2609. "type": "git",
  2610. "url": "https://github.com/symfony/filesystem.git",
  2611. "reference": "e078773ad6354af38169faf31c21df0f18ace03d"
  2612. },
  2613. "dist": {
  2614. "type": "zip",
  2615. "url": "https://api.github.com/repos/symfony/filesystem/zipball/e078773ad6354af38169faf31c21df0f18ace03d",
  2616. "reference": "e078773ad6354af38169faf31c21df0f18ace03d",
  2617. "shasum": ""
  2618. },
  2619. "require": {
  2620. "php": "^5.5.9|>=7.0.8"
  2621. },
  2622. "type": "library",
  2623. "extra": {
  2624. "branch-alias": {
  2625. "dev-master": "3.4-dev"
  2626. }
  2627. },
  2628. "autoload": {
  2629. "psr-4": {
  2630. "Symfony\\Component\\Filesystem\\": ""
  2631. },
  2632. "exclude-from-classmap": [
  2633. "/Tests/"
  2634. ]
  2635. },
  2636. "notification-url": "https://packagist.org/downloads/",
  2637. "license": [
  2638. "MIT"
  2639. ],
  2640. "authors": [
  2641. {
  2642. "name": "Fabien Potencier",
  2643. "email": "fabien@symfony.com"
  2644. },
  2645. {
  2646. "name": "Symfony Community",
  2647. "homepage": "https://symfony.com/contributors"
  2648. }
  2649. ],
  2650. "description": "Symfony Filesystem Component",
  2651. "homepage": "https://symfony.com",
  2652. "time": "2018-01-03T07:37:34+00:00"
  2653. },
  2654. {
  2655. "name": "symfony/finder",
  2656. "version": "v3.4.4",
  2657. "source": {
  2658. "type": "git",
  2659. "url": "https://github.com/symfony/finder.git",
  2660. "reference": "613e26310776f49a1773b6737c6bd554b8bc8c6f"
  2661. },
  2662. "dist": {
  2663. "type": "zip",
  2664. "url": "https://api.github.com/repos/symfony/finder/zipball/613e26310776f49a1773b6737c6bd554b8bc8c6f",
  2665. "reference": "613e26310776f49a1773b6737c6bd554b8bc8c6f",
  2666. "shasum": ""
  2667. },
  2668. "require": {
  2669. "php": "^5.5.9|>=7.0.8"
  2670. },
  2671. "type": "library",
  2672. "extra": {
  2673. "branch-alias": {
  2674. "dev-master": "3.4-dev"
  2675. }
  2676. },
  2677. "autoload": {
  2678. "psr-4": {
  2679. "Symfony\\Component\\Finder\\": ""
  2680. },
  2681. "exclude-from-classmap": [
  2682. "/Tests/"
  2683. ]
  2684. },
  2685. "notification-url": "https://packagist.org/downloads/",
  2686. "license": [
  2687. "MIT"
  2688. ],
  2689. "authors": [
  2690. {
  2691. "name": "Fabien Potencier",
  2692. "email": "fabien@symfony.com"
  2693. },
  2694. {
  2695. "name": "Symfony Community",
  2696. "homepage": "https://symfony.com/contributors"
  2697. }
  2698. ],
  2699. "description": "Symfony Finder Component",
  2700. "homepage": "https://symfony.com",
  2701. "time": "2018-01-03T07:37:34+00:00"
  2702. },
  2703. {
  2704. "name": "symfony/http-foundation",
  2705. "version": "v3.2.14",
  2706. "source": {
  2707. "type": "git",
  2708. "url": "https://github.com/symfony/http-foundation.git",
  2709. "reference": "107b7e6c2372ad4859b8a8c8c5b4fb9d7a208fe1"
  2710. },
  2711. "dist": {
  2712. "type": "zip",
  2713. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/107b7e6c2372ad4859b8a8c8c5b4fb9d7a208fe1",
  2714. "reference": "107b7e6c2372ad4859b8a8c8c5b4fb9d7a208fe1",
  2715. "shasum": ""
  2716. },
  2717. "require": {
  2718. "php": ">=5.5.9",
  2719. "symfony/polyfill-mbstring": "~1.1"
  2720. },
  2721. "require-dev": {
  2722. "symfony/expression-language": "~2.8|~3.0"
  2723. },
  2724. "type": "library",
  2725. "extra": {
  2726. "branch-alias": {
  2727. "dev-master": "3.2-dev"
  2728. }
  2729. },
  2730. "autoload": {
  2731. "psr-4": {
  2732. "Symfony\\Component\\HttpFoundation\\": ""
  2733. },
  2734. "exclude-from-classmap": [
  2735. "/Tests/"
  2736. ]
  2737. },
  2738. "notification-url": "https://packagist.org/downloads/",
  2739. "license": [
  2740. "MIT"
  2741. ],
  2742. "authors": [
  2743. {
  2744. "name": "Fabien Potencier",
  2745. "email": "fabien@symfony.com"
  2746. },
  2747. {
  2748. "name": "Symfony Community",
  2749. "homepage": "https://symfony.com/contributors"
  2750. }
  2751. ],
  2752. "description": "Symfony HttpFoundation Component",
  2753. "homepage": "https://symfony.com",
  2754. "time": "2017-07-20T07:58:49+00:00"
  2755. },
  2756. {
  2757. "name": "symfony/http-kernel",
  2758. "version": "v3.2.14",
  2759. "source": {
  2760. "type": "git",
  2761. "url": "https://github.com/symfony/http-kernel.git",
  2762. "reference": "18ec42e19ec676d7da5ddff13f1eed68d88fb460"
  2763. },
  2764. "dist": {
  2765. "type": "zip",
  2766. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/18ec42e19ec676d7da5ddff13f1eed68d88fb460",
  2767. "reference": "18ec42e19ec676d7da5ddff13f1eed68d88fb460",
  2768. "shasum": ""
  2769. },
  2770. "require": {
  2771. "php": ">=5.5.9",
  2772. "psr/log": "~1.0",
  2773. "symfony/debug": "~2.8|~3.0",
  2774. "symfony/event-dispatcher": "~2.8|~3.0",
  2775. "symfony/http-foundation": "~2.8.13|~3.1.6|~3.2"
  2776. },
  2777. "conflict": {
  2778. "symfony/config": "<2.8",
  2779. "twig/twig": "<1.34|<2.4,>=2"
  2780. },
  2781. "require-dev": {
  2782. "symfony/browser-kit": "~2.8|~3.0",
  2783. "symfony/class-loader": "~2.8|~3.0",
  2784. "symfony/config": "~2.8|~3.0",
  2785. "symfony/console": "~2.8|~3.0",
  2786. "symfony/css-selector": "~2.8|~3.0",
  2787. "symfony/dependency-injection": "~2.8|~3.0",
  2788. "symfony/dom-crawler": "~2.8|~3.0",
  2789. "symfony/expression-language": "~2.8|~3.0",
  2790. "symfony/finder": "~2.8|~3.0",
  2791. "symfony/process": "~2.8|~3.0",
  2792. "symfony/routing": "~2.8|~3.0",
  2793. "symfony/stopwatch": "~2.8|~3.0",
  2794. "symfony/templating": "~2.8|~3.0",
  2795. "symfony/translation": "~2.8|~3.0",
  2796. "symfony/var-dumper": "~3.2"
  2797. },
  2798. "suggest": {
  2799. "symfony/browser-kit": "",
  2800. "symfony/class-loader": "",
  2801. "symfony/config": "",
  2802. "symfony/console": "",
  2803. "symfony/dependency-injection": "",
  2804. "symfony/finder": "",
  2805. "symfony/var-dumper": ""
  2806. },
  2807. "type": "library",
  2808. "extra": {
  2809. "branch-alias": {
  2810. "dev-master": "3.2-dev"
  2811. }
  2812. },
  2813. "autoload": {
  2814. "psr-4": {
  2815. "Symfony\\Component\\HttpKernel\\": ""
  2816. },
  2817. "exclude-from-classmap": [
  2818. "/Tests/"
  2819. ]
  2820. },
  2821. "notification-url": "https://packagist.org/downloads/",
  2822. "license": [
  2823. "MIT"
  2824. ],
  2825. "authors": [
  2826. {
  2827. "name": "Fabien Potencier",
  2828. "email": "fabien@symfony.com"
  2829. },
  2830. {
  2831. "name": "Symfony Community",
  2832. "homepage": "https://symfony.com/contributors"
  2833. }
  2834. ],
  2835. "description": "Symfony HttpKernel Component",
  2836. "homepage": "https://symfony.com",
  2837. "time": "2017-08-01T09:40:19+00:00"
  2838. },
  2839. {
  2840. "name": "symfony/polyfill-iconv",
  2841. "version": "v1.6.0",
  2842. "source": {
  2843. "type": "git",
  2844. "url": "https://github.com/symfony/polyfill-iconv.git",
  2845. "reference": "7a84ccdb8c953ee274c96dd6bde778d873fc824a"
  2846. },
  2847. "dist": {
  2848. "type": "zip",
  2849. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/7a84ccdb8c953ee274c96dd6bde778d873fc824a",
  2850. "reference": "7a84ccdb8c953ee274c96dd6bde778d873fc824a",
  2851. "shasum": ""
  2852. },
  2853. "require": {
  2854. "php": ">=5.3.3"
  2855. },
  2856. "suggest": {
  2857. "ext-iconv": "For best performance"
  2858. },
  2859. "type": "library",
  2860. "extra": {
  2861. "branch-alias": {
  2862. "dev-master": "1.6-dev"
  2863. }
  2864. },
  2865. "autoload": {
  2866. "psr-4": {
  2867. "Symfony\\Polyfill\\Iconv\\": ""
  2868. },
  2869. "files": [
  2870. "bootstrap.php"
  2871. ]
  2872. },
  2873. "notification-url": "https://packagist.org/downloads/",
  2874. "license": [
  2875. "MIT"
  2876. ],
  2877. "authors": [
  2878. {
  2879. "name": "Nicolas Grekas",
  2880. "email": "p@tchwork.com"
  2881. },
  2882. {
  2883. "name": "Symfony Community",
  2884. "homepage": "https://symfony.com/contributors"
  2885. }
  2886. ],
  2887. "description": "Symfony polyfill for the Iconv extension",
  2888. "homepage": "https://symfony.com",
  2889. "keywords": [
  2890. "compatibility",
  2891. "iconv",
  2892. "polyfill",
  2893. "portable",
  2894. "shim"
  2895. ],
  2896. "time": "2017-10-11T12:05:26+00:00"
  2897. },
  2898. {
  2899. "name": "symfony/polyfill-mbstring",
  2900. "version": "v1.6.0",
  2901. "source": {
  2902. "type": "git",
  2903. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2904. "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296"
  2905. },
  2906. "dist": {
  2907. "type": "zip",
  2908. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  2909. "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  2910. "shasum": ""
  2911. },
  2912. "require": {
  2913. "php": ">=5.3.3"
  2914. },
  2915. "suggest": {
  2916. "ext-mbstring": "For best performance"
  2917. },
  2918. "type": "library",
  2919. "extra": {
  2920. "branch-alias": {
  2921. "dev-master": "1.6-dev"
  2922. }
  2923. },
  2924. "autoload": {
  2925. "psr-4": {
  2926. "Symfony\\Polyfill\\Mbstring\\": ""
  2927. },
  2928. "files": [
  2929. "bootstrap.php"
  2930. ]
  2931. },
  2932. "notification-url": "https://packagist.org/downloads/",
  2933. "license": [
  2934. "MIT"
  2935. ],
  2936. "authors": [
  2937. {
  2938. "name": "Nicolas Grekas",
  2939. "email": "p@tchwork.com"
  2940. },
  2941. {
  2942. "name": "Symfony Community",
  2943. "homepage": "https://symfony.com/contributors"
  2944. }
  2945. ],
  2946. "description": "Symfony polyfill for the Mbstring extension",
  2947. "homepage": "https://symfony.com",
  2948. "keywords": [
  2949. "compatibility",
  2950. "mbstring",
  2951. "polyfill",
  2952. "portable",
  2953. "shim"
  2954. ],
  2955. "time": "2017-10-11T12:05:26+00:00"
  2956. },
  2957. {
  2958. "name": "symfony/process",
  2959. "version": "v3.2.14",
  2960. "source": {
  2961. "type": "git",
  2962. "url": "https://github.com/symfony/process.git",
  2963. "reference": "b39d805dd6c4d1cba1f00cd80361ec80eed0d7bc"
  2964. },
  2965. "dist": {
  2966. "type": "zip",
  2967. "url": "https://api.github.com/repos/symfony/process/zipball/b39d805dd6c4d1cba1f00cd80361ec80eed0d7bc",
  2968. "reference": "b39d805dd6c4d1cba1f00cd80361ec80eed0d7bc",
  2969. "shasum": ""
  2970. },
  2971. "require": {
  2972. "php": ">=5.5.9"
  2973. },
  2974. "type": "library",
  2975. "extra": {
  2976. "branch-alias": {
  2977. "dev-master": "3.2-dev"
  2978. }
  2979. },
  2980. "autoload": {
  2981. "psr-4": {
  2982. "Symfony\\Component\\Process\\": ""
  2983. },
  2984. "exclude-from-classmap": [
  2985. "/Tests/"
  2986. ]
  2987. },
  2988. "notification-url": "https://packagist.org/downloads/",
  2989. "license": [
  2990. "MIT"
  2991. ],
  2992. "authors": [
  2993. {
  2994. "name": "Fabien Potencier",
  2995. "email": "fabien@symfony.com"
  2996. },
  2997. {
  2998. "name": "Symfony Community",
  2999. "homepage": "https://symfony.com/contributors"
  3000. }
  3001. ],
  3002. "description": "Symfony Process Component",
  3003. "homepage": "https://symfony.com",
  3004. "time": "2017-07-03T08:06:20+00:00"
  3005. },
  3006. {
  3007. "name": "symfony/psr-http-message-bridge",
  3008. "version": "v1.0.2",
  3009. "source": {
  3010. "type": "git",
  3011. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  3012. "reference": "c2b757934f2d9681a287e662efbc27c41fe8ef86"
  3013. },
  3014. "dist": {
  3015. "type": "zip",
  3016. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/c2b757934f2d9681a287e662efbc27c41fe8ef86",
  3017. "reference": "c2b757934f2d9681a287e662efbc27c41fe8ef86",
  3018. "shasum": ""
  3019. },
  3020. "require": {
  3021. "php": ">=5.3.3",
  3022. "psr/http-message": "~1.0",
  3023. "symfony/http-foundation": "~2.3|~3.0|~4.0"
  3024. },
  3025. "require-dev": {
  3026. "symfony/phpunit-bridge": "~3.2|4.0"
  3027. },
  3028. "suggest": {
  3029. "psr/http-message-implementation": "To use the HttpFoundation factory",
  3030. "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
  3031. },
  3032. "type": "symfony-bridge",
  3033. "extra": {
  3034. "branch-alias": {
  3035. "dev-master": "1.0-dev"
  3036. }
  3037. },
  3038. "autoload": {
  3039. "psr-4": {
  3040. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  3041. }
  3042. },
  3043. "notification-url": "https://packagist.org/downloads/",
  3044. "license": [
  3045. "MIT"
  3046. ],
  3047. "authors": [
  3048. {
  3049. "name": "Symfony Community",
  3050. "homepage": "http://symfony.com/contributors"
  3051. },
  3052. {
  3053. "name": "Fabien Potencier",
  3054. "email": "fabien@symfony.com"
  3055. }
  3056. ],
  3057. "description": "PSR HTTP message bridge",
  3058. "homepage": "http://symfony.com",
  3059. "keywords": [
  3060. "http",
  3061. "http-message",
  3062. "psr-7"
  3063. ],
  3064. "time": "2017-12-19T00:31:44+00:00"
  3065. },
  3066. {
  3067. "name": "symfony/routing",
  3068. "version": "v3.2.14",
  3069. "source": {
  3070. "type": "git",
  3071. "url": "https://github.com/symfony/routing.git",
  3072. "reference": "b382d7c4f443372c118efcd0cd2bf1028434f2f5"
  3073. },
  3074. "dist": {
  3075. "type": "zip",
  3076. "url": "https://api.github.com/repos/symfony/routing/zipball/b382d7c4f443372c118efcd0cd2bf1028434f2f5",
  3077. "reference": "b382d7c4f443372c118efcd0cd2bf1028434f2f5",
  3078. "shasum": ""
  3079. },
  3080. "require": {
  3081. "php": ">=5.5.9"
  3082. },
  3083. "conflict": {
  3084. "symfony/config": "<2.8"
  3085. },
  3086. "require-dev": {
  3087. "doctrine/annotations": "~1.0",
  3088. "doctrine/common": "~2.2",
  3089. "psr/log": "~1.0",
  3090. "symfony/config": "~2.8|~3.0",
  3091. "symfony/expression-language": "~2.8|~3.0",
  3092. "symfony/http-foundation": "~2.8|~3.0",
  3093. "symfony/yaml": "~2.8|~3.0"
  3094. },
  3095. "suggest": {
  3096. "doctrine/annotations": "For using the annotation loader",
  3097. "symfony/config": "For using the all-in-one router or any loader",
  3098. "symfony/dependency-injection": "For loading routes from a service",
  3099. "symfony/expression-language": "For using expression matching",
  3100. "symfony/http-foundation": "For using a Symfony Request object",
  3101. "symfony/yaml": "For using the YAML loader"
  3102. },
  3103. "type": "library",
  3104. "extra": {
  3105. "branch-alias": {
  3106. "dev-master": "3.2-dev"
  3107. }
  3108. },
  3109. "autoload": {
  3110. "psr-4": {
  3111. "Symfony\\Component\\Routing\\": ""
  3112. },
  3113. "exclude-from-classmap": [
  3114. "/Tests/"
  3115. ]
  3116. },
  3117. "notification-url": "https://packagist.org/downloads/",
  3118. "license": [
  3119. "MIT"
  3120. ],
  3121. "authors": [
  3122. {
  3123. "name": "Fabien Potencier",
  3124. "email": "fabien@symfony.com"
  3125. },
  3126. {
  3127. "name": "Symfony Community",
  3128. "homepage": "https://symfony.com/contributors"
  3129. }
  3130. ],
  3131. "description": "Symfony Routing Component",
  3132. "homepage": "https://symfony.com",
  3133. "keywords": [
  3134. "router",
  3135. "routing",
  3136. "uri",
  3137. "url"
  3138. ],
  3139. "time": "2017-06-23T06:35:45+00:00"
  3140. },
  3141. {
  3142. "name": "symfony/serializer",
  3143. "version": "v3.2.14",
  3144. "source": {
  3145. "type": "git",
  3146. "url": "https://github.com/symfony/serializer.git",
  3147. "reference": "dc98d5ab4ae29dc47bfb1507b39806bfe13d3477"
  3148. },
  3149. "dist": {
  3150. "type": "zip",
  3151. "url": "https://api.github.com/repos/symfony/serializer/zipball/dc98d5ab4ae29dc47bfb1507b39806bfe13d3477",
  3152. "reference": "dc98d5ab4ae29dc47bfb1507b39806bfe13d3477",
  3153. "shasum": ""
  3154. },
  3155. "require": {
  3156. "php": ">=5.5.9"
  3157. },
  3158. "conflict": {
  3159. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  3160. "symfony/property-info": "<3.1",
  3161. "symfony/yaml": "<3.1"
  3162. },
  3163. "require-dev": {
  3164. "doctrine/annotations": "~1.0",
  3165. "doctrine/cache": "~1.0",
  3166. "phpdocumentor/reflection-docblock": "~3.0",
  3167. "symfony/cache": "~3.1",
  3168. "symfony/config": "~2.8|~3.0",
  3169. "symfony/http-foundation": "~2.8|~3.0",
  3170. "symfony/property-access": "~2.8|~3.0",
  3171. "symfony/property-info": "~3.1",
  3172. "symfony/yaml": "~3.1"
  3173. },
  3174. "suggest": {
  3175. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  3176. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  3177. "psr/cache-implementation": "For using the metadata cache.",
  3178. "symfony/config": "For using the XML mapping loader.",
  3179. "symfony/http-foundation": "To use the DataUriNormalizer.",
  3180. "symfony/property-access": "For using the ObjectNormalizer.",
  3181. "symfony/property-info": "To deserialize relations.",
  3182. "symfony/yaml": "For using the default YAML mapping loader."
  3183. },
  3184. "type": "library",
  3185. "extra": {
  3186. "branch-alias": {
  3187. "dev-master": "3.2-dev"
  3188. }
  3189. },
  3190. "autoload": {
  3191. "psr-4": {
  3192. "Symfony\\Component\\Serializer\\": ""
  3193. },
  3194. "exclude-from-classmap": [
  3195. "/Tests/"
  3196. ]
  3197. },
  3198. "notification-url": "https://packagist.org/downloads/",
  3199. "license": [
  3200. "MIT"
  3201. ],
  3202. "authors": [
  3203. {
  3204. "name": "Fabien Potencier",
  3205. "email": "fabien@symfony.com"
  3206. },
  3207. {
  3208. "name": "Symfony Community",
  3209. "homepage": "https://symfony.com/contributors"
  3210. }
  3211. ],
  3212. "description": "Symfony Serializer Component",
  3213. "homepage": "https://symfony.com",
  3214. "time": "2017-07-06T07:39:51+00:00"
  3215. },
  3216. {
  3217. "name": "symfony/translation",
  3218. "version": "v3.2.14",
  3219. "source": {
  3220. "type": "git",
  3221. "url": "https://github.com/symfony/translation.git",
  3222. "reference": "df36a48672b929bf3995eb62c58d83004b1d0d50"
  3223. },
  3224. "dist": {
  3225. "type": "zip",
  3226. "url": "https://api.github.com/repos/symfony/translation/zipball/df36a48672b929bf3995eb62c58d83004b1d0d50",
  3227. "reference": "df36a48672b929bf3995eb62c58d83004b1d0d50",
  3228. "shasum": ""
  3229. },
  3230. "require": {
  3231. "php": ">=5.5.9",
  3232. "symfony/polyfill-mbstring": "~1.0"
  3233. },
  3234. "conflict": {
  3235. "symfony/config": "<2.8"
  3236. },
  3237. "require-dev": {
  3238. "psr/log": "~1.0",
  3239. "symfony/config": "~2.8|~3.0",
  3240. "symfony/intl": "^2.8.18|^3.2.5",
  3241. "symfony/yaml": "~2.8|~3.0"
  3242. },
  3243. "suggest": {
  3244. "psr/log": "To use logging capability in translator",
  3245. "symfony/config": "",
  3246. "symfony/yaml": ""
  3247. },
  3248. "type": "library",
  3249. "extra": {
  3250. "branch-alias": {
  3251. "dev-master": "3.2-dev"
  3252. }
  3253. },
  3254. "autoload": {
  3255. "psr-4": {
  3256. "Symfony\\Component\\Translation\\": ""
  3257. },
  3258. "exclude-from-classmap": [
  3259. "/Tests/"
  3260. ]
  3261. },
  3262. "notification-url": "https://packagist.org/downloads/",
  3263. "license": [
  3264. "MIT"
  3265. ],
  3266. "authors": [
  3267. {
  3268. "name": "Fabien Potencier",
  3269. "email": "fabien@symfony.com"
  3270. },
  3271. {
  3272. "name": "Symfony Community",
  3273. "homepage": "https://symfony.com/contributors"
  3274. }
  3275. ],
  3276. "description": "Symfony Translation Component",
  3277. "homepage": "https://symfony.com",
  3278. "time": "2017-06-24T16:45:17+00:00"
  3279. },
  3280. {
  3281. "name": "symfony/validator",
  3282. "version": "v3.2.14",
  3283. "source": {
  3284. "type": "git",
  3285. "url": "https://github.com/symfony/validator.git",
  3286. "reference": "39244fbf580e01acc3f5df01238a8f69b1b3e46f"
  3287. },
  3288. "dist": {
  3289. "type": "zip",
  3290. "url": "https://api.github.com/repos/symfony/validator/zipball/39244fbf580e01acc3f5df01238a8f69b1b3e46f",
  3291. "reference": "39244fbf580e01acc3f5df01238a8f69b1b3e46f",
  3292. "shasum": ""
  3293. },
  3294. "require": {
  3295. "php": ">=5.5.9",
  3296. "symfony/polyfill-mbstring": "~1.0",
  3297. "symfony/translation": "~2.8|~3.0"
  3298. },
  3299. "conflict": {
  3300. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  3301. },
  3302. "require-dev": {
  3303. "doctrine/annotations": "~1.0",
  3304. "doctrine/cache": "~1.0",
  3305. "egulias/email-validator": "^1.2.8|~2.0",
  3306. "symfony/cache": "~3.1",
  3307. "symfony/config": "~2.8|~3.0",
  3308. "symfony/expression-language": "~2.8|~3.0",
  3309. "symfony/http-foundation": "~2.8|~3.0",
  3310. "symfony/intl": "^2.8.18|^3.2.5",
  3311. "symfony/yaml": "~2.8|~3.0"
  3312. },
  3313. "suggest": {
  3314. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  3315. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  3316. "egulias/email-validator": "Strict (RFC compliant) email validation",
  3317. "psr/cache-implementation": "For using the metadata cache.",
  3318. "symfony/config": "",
  3319. "symfony/expression-language": "For using the Expression validator",
  3320. "symfony/http-foundation": "",
  3321. "symfony/intl": "",
  3322. "symfony/yaml": ""
  3323. },
  3324. "type": "library",
  3325. "extra": {
  3326. "branch-alias": {
  3327. "dev-master": "3.2-dev"
  3328. }
  3329. },
  3330. "autoload": {
  3331. "psr-4": {
  3332. "Symfony\\Component\\Validator\\": ""
  3333. },
  3334. "exclude-from-classmap": [
  3335. "/Tests/"
  3336. ]
  3337. },
  3338. "notification-url": "https://packagist.org/downloads/",
  3339. "license": [
  3340. "MIT"
  3341. ],
  3342. "authors": [
  3343. {
  3344. "name": "Fabien Potencier",
  3345. "email": "fabien@symfony.com"
  3346. },
  3347. {
  3348. "name": "Symfony Community",
  3349. "homepage": "https://symfony.com/contributors"
  3350. }
  3351. ],
  3352. "description": "Symfony Validator Component",
  3353. "homepage": "https://symfony.com",
  3354. "time": "2017-07-26T06:34:07+00:00"
  3355. },
  3356. {
  3357. "name": "symfony/var-dumper",
  3358. "version": "v3.4.4",
  3359. "source": {
  3360. "type": "git",
  3361. "url": "https://github.com/symfony/var-dumper.git",
  3362. "reference": "472a9849930cf21f73abdb02240f17cf5b5bd1a7"
  3363. },
  3364. "dist": {
  3365. "type": "zip",
  3366. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/472a9849930cf21f73abdb02240f17cf5b5bd1a7",
  3367. "reference": "472a9849930cf21f73abdb02240f17cf5b5bd1a7",
  3368. "shasum": ""
  3369. },
  3370. "require": {
  3371. "php": "^5.5.9|>=7.0.8",
  3372. "symfony/polyfill-mbstring": "~1.0"
  3373. },
  3374. "conflict": {
  3375. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  3376. },
  3377. "require-dev": {
  3378. "ext-iconv": "*",
  3379. "twig/twig": "~1.34|~2.4"
  3380. },
  3381. "suggest": {
  3382. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  3383. "ext-intl": "To show region name in time zone dump",
  3384. "ext-symfony_debug": ""
  3385. },
  3386. "type": "library",
  3387. "extra": {
  3388. "branch-alias": {
  3389. "dev-master": "3.4-dev"
  3390. }
  3391. },
  3392. "autoload": {
  3393. "files": [
  3394. "Resources/functions/dump.php"
  3395. ],
  3396. "psr-4": {
  3397. "Symfony\\Component\\VarDumper\\": ""
  3398. },
  3399. "exclude-from-classmap": [
  3400. "/Tests/"
  3401. ]
  3402. },
  3403. "notification-url": "https://packagist.org/downloads/",
  3404. "license": [
  3405. "MIT"
  3406. ],
  3407. "authors": [
  3408. {
  3409. "name": "Nicolas Grekas",
  3410. "email": "p@tchwork.com"
  3411. },
  3412. {
  3413. "name": "Symfony Community",
  3414. "homepage": "https://symfony.com/contributors"
  3415. }
  3416. ],
  3417. "description": "Symfony mechanism for exploring and dumping PHP variables",
  3418. "homepage": "https://symfony.com",
  3419. "keywords": [
  3420. "debug",
  3421. "dump"
  3422. ],
  3423. "time": "2018-01-29T09:03:43+00:00"
  3424. },
  3425. {
  3426. "name": "symfony/yaml",
  3427. "version": "v3.2.14",
  3428. "source": {
  3429. "type": "git",
  3430. "url": "https://github.com/symfony/yaml.git",
  3431. "reference": "78a0c5d7d43713212aac73d7c6a56754a5c26cea"
  3432. },
  3433. "dist": {
  3434. "type": "zip",
  3435. "url": "https://api.github.com/repos/symfony/yaml/zipball/78a0c5d7d43713212aac73d7c6a56754a5c26cea",
  3436. "reference": "78a0c5d7d43713212aac73d7c6a56754a5c26cea",
  3437. "shasum": ""
  3438. },
  3439. "require": {
  3440. "php": ">=5.5.9"
  3441. },
  3442. "require-dev": {
  3443. "symfony/console": "~2.8|~3.0"
  3444. },
  3445. "suggest": {
  3446. "symfony/console": "For validating YAML files using the lint command"
  3447. },
  3448. "type": "library",
  3449. "extra": {
  3450. "branch-alias": {
  3451. "dev-master": "3.2-dev"
  3452. }
  3453. },
  3454. "autoload": {
  3455. "psr-4": {
  3456. "Symfony\\Component\\Yaml\\": ""
  3457. },
  3458. "exclude-from-classmap": [
  3459. "/Tests/"
  3460. ]
  3461. },
  3462. "notification-url": "https://packagist.org/downloads/",
  3463. "license": [
  3464. "MIT"
  3465. ],
  3466. "authors": [
  3467. {
  3468. "name": "Fabien Potencier",
  3469. "email": "fabien@symfony.com"
  3470. },
  3471. {
  3472. "name": "Symfony Community",
  3473. "homepage": "https://symfony.com/contributors"
  3474. }
  3475. ],
  3476. "description": "Symfony Yaml Component",
  3477. "homepage": "https://symfony.com",
  3478. "time": "2017-06-02T09:43:35+00:00"
  3479. },
  3480. {
  3481. "name": "twig/twig",
  3482. "version": "v1.35.0",
  3483. "source": {
  3484. "type": "git",
  3485. "url": "https://github.com/twigphp/Twig.git",
  3486. "reference": "daa657073e55b0a78cce8fdd22682fddecc6385f"
  3487. },
  3488. "dist": {
  3489. "type": "zip",
  3490. "url": "https://api.github.com/repos/twigphp/Twig/zipball/daa657073e55b0a78cce8fdd22682fddecc6385f",
  3491. "reference": "daa657073e55b0a78cce8fdd22682fddecc6385f",
  3492. "shasum": ""
  3493. },
  3494. "require": {
  3495. "php": ">=5.3.3"
  3496. },
  3497. "require-dev": {
  3498. "psr/container": "^1.0",
  3499. "symfony/debug": "~2.7",
  3500. "symfony/phpunit-bridge": "~3.3@dev"
  3501. },
  3502. "type": "library",
  3503. "extra": {
  3504. "branch-alias": {
  3505. "dev-master": "1.35-dev"
  3506. }
  3507. },
  3508. "autoload": {
  3509. "psr-0": {
  3510. "Twig_": "lib/"
  3511. },
  3512. "psr-4": {
  3513. "Twig\\": "src/"
  3514. }
  3515. },
  3516. "notification-url": "https://packagist.org/downloads/",
  3517. "license": [
  3518. "BSD-3-Clause"
  3519. ],
  3520. "authors": [
  3521. {
  3522. "name": "Fabien Potencier",
  3523. "email": "fabien@symfony.com",
  3524. "homepage": "http://fabien.potencier.org",
  3525. "role": "Lead Developer"
  3526. },
  3527. {
  3528. "name": "Armin Ronacher",
  3529. "email": "armin.ronacher@active-4.com",
  3530. "role": "Project Founder"
  3531. },
  3532. {
  3533. "name": "Twig Team",
  3534. "homepage": "http://twig.sensiolabs.org/contributors",
  3535. "role": "Contributors"
  3536. }
  3537. ],
  3538. "description": "Twig, the flexible, fast, and secure template language for PHP",
  3539. "homepage": "http://twig.sensiolabs.org",
  3540. "keywords": [
  3541. "templating"
  3542. ],
  3543. "time": "2017-09-27T18:06:46+00:00"
  3544. },
  3545. {
  3546. "name": "webflo/drupal-finder",
  3547. "version": "1.1.0",
  3548. "source": {
  3549. "type": "git",
  3550. "url": "https://github.com/webflo/drupal-finder.git",
  3551. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
  3552. },
  3553. "dist": {
  3554. "type": "zip",
  3555. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
  3556. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
  3557. "shasum": ""
  3558. },
  3559. "require-dev": {
  3560. "mikey179/vfsstream": "^1.6",
  3561. "phpunit/phpunit": "^4.8"
  3562. },
  3563. "type": "library",
  3564. "autoload": {
  3565. "classmap": [
  3566. "src/DrupalFinder.php"
  3567. ]
  3568. },
  3569. "notification-url": "https://packagist.org/downloads/",
  3570. "license": [
  3571. "GPL-2.0+"
  3572. ],
  3573. "authors": [
  3574. {
  3575. "name": "Florian Weber",
  3576. "email": "florian@webflo.org"
  3577. }
  3578. ],
  3579. "description": "Helper class to locate a Drupal installation from a given path.",
  3580. "time": "2017-10-24T08:12:11+00:00"
  3581. },
  3582. {
  3583. "name": "webmozart/assert",
  3584. "version": "1.2.0",
  3585. "source": {
  3586. "type": "git",
  3587. "url": "https://github.com/webmozart/assert.git",
  3588. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f"
  3589. },
  3590. "dist": {
  3591. "type": "zip",
  3592. "url": "https://api.github.com/repos/webmozart/assert/zipball/2db61e59ff05fe5126d152bd0655c9ea113e550f",
  3593. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f",
  3594. "shasum": ""
  3595. },
  3596. "require": {
  3597. "php": "^5.3.3 || ^7.0"
  3598. },
  3599. "require-dev": {
  3600. "phpunit/phpunit": "^4.6",
  3601. "sebastian/version": "^1.0.1"
  3602. },
  3603. "type": "library",
  3604. "extra": {
  3605. "branch-alias": {
  3606. "dev-master": "1.3-dev"
  3607. }
  3608. },
  3609. "autoload": {
  3610. "psr-4": {
  3611. "Webmozart\\Assert\\": "src/"
  3612. }
  3613. },
  3614. "notification-url": "https://packagist.org/downloads/",
  3615. "license": [
  3616. "MIT"
  3617. ],
  3618. "authors": [
  3619. {
  3620. "name": "Bernhard Schussek",
  3621. "email": "bschussek@gmail.com"
  3622. }
  3623. ],
  3624. "description": "Assertions to validate method input/output with nice error messages.",
  3625. "keywords": [
  3626. "assert",
  3627. "check",
  3628. "validate"
  3629. ],
  3630. "time": "2016-11-23T20:04:58+00:00"
  3631. },
  3632. {
  3633. "name": "webmozart/path-util",
  3634. "version": "2.3.0",
  3635. "source": {
  3636. "type": "git",
  3637. "url": "https://github.com/webmozart/path-util.git",
  3638. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  3639. },
  3640. "dist": {
  3641. "type": "zip",
  3642. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  3643. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  3644. "shasum": ""
  3645. },
  3646. "require": {
  3647. "php": ">=5.3.3",
  3648. "webmozart/assert": "~1.0"
  3649. },
  3650. "require-dev": {
  3651. "phpunit/phpunit": "^4.6",
  3652. "sebastian/version": "^1.0.1"
  3653. },
  3654. "type": "library",
  3655. "extra": {
  3656. "branch-alias": {
  3657. "dev-master": "2.3-dev"
  3658. }
  3659. },
  3660. "autoload": {
  3661. "psr-4": {
  3662. "Webmozart\\PathUtil\\": "src/"
  3663. }
  3664. },
  3665. "notification-url": "https://packagist.org/downloads/",
  3666. "license": [
  3667. "MIT"
  3668. ],
  3669. "authors": [
  3670. {
  3671. "name": "Bernhard Schussek",
  3672. "email": "bschussek@gmail.com"
  3673. }
  3674. ],
  3675. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  3676. "time": "2015-12-17T08:42:14+00:00"
  3677. },
  3678. {
  3679. "name": "wikimedia/composer-merge-plugin",
  3680. "version": "v1.4.1",
  3681. "source": {
  3682. "type": "git",
  3683. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  3684. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  3685. },
  3686. "dist": {
  3687. "type": "zip",
  3688. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  3689. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  3690. "shasum": ""
  3691. },
  3692. "require": {
  3693. "composer-plugin-api": "^1.0",
  3694. "php": ">=5.3.2"
  3695. },
  3696. "require-dev": {
  3697. "composer/composer": "~1.0.0",
  3698. "jakub-onderka/php-parallel-lint": "~0.8",
  3699. "phpunit/phpunit": "~4.8|~5.0",
  3700. "squizlabs/php_codesniffer": "~2.1.0"
  3701. },
  3702. "type": "composer-plugin",
  3703. "extra": {
  3704. "branch-alias": {
  3705. "dev-master": "1.3.x-dev"
  3706. },
  3707. "class": "Wikimedia\\Composer\\MergePlugin"
  3708. },
  3709. "autoload": {
  3710. "psr-4": {
  3711. "Wikimedia\\Composer\\": "src/"
  3712. }
  3713. },
  3714. "notification-url": "https://packagist.org/downloads/",
  3715. "license": [
  3716. "MIT"
  3717. ],
  3718. "authors": [
  3719. {
  3720. "name": "Bryan Davis",
  3721. "email": "bd808@wikimedia.org"
  3722. }
  3723. ],
  3724. "description": "Composer plugin to merge multiple composer.json files",
  3725. "time": "2017-04-25T02:31:25+00:00"
  3726. },
  3727. {
  3728. "name": "zendframework/zend-diactoros",
  3729. "version": "1.7.0",
  3730. "source": {
  3731. "type": "git",
  3732. "url": "https://github.com/zendframework/zend-diactoros.git",
  3733. "reference": "ed6ce7e2105c400ca10277643a8327957c0384b7"
  3734. },
  3735. "dist": {
  3736. "type": "zip",
  3737. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/ed6ce7e2105c400ca10277643a8327957c0384b7",
  3738. "reference": "ed6ce7e2105c400ca10277643a8327957c0384b7",
  3739. "shasum": ""
  3740. },
  3741. "require": {
  3742. "php": "^5.6 || ^7.0",
  3743. "psr/http-message": "^1.0"
  3744. },
  3745. "provide": {
  3746. "psr/http-message-implementation": "1.0"
  3747. },
  3748. "require-dev": {
  3749. "ext-dom": "*",
  3750. "ext-libxml": "*",
  3751. "phpunit/phpunit": "^5.7.16 || ^6.0.8",
  3752. "zendframework/zend-coding-standard": "~1.0"
  3753. },
  3754. "type": "library",
  3755. "extra": {
  3756. "branch-alias": {
  3757. "dev-master": "1.7.x-dev",
  3758. "dev-develop": "1.8.x-dev"
  3759. }
  3760. },
  3761. "autoload": {
  3762. "psr-4": {
  3763. "Zend\\Diactoros\\": "src/"
  3764. }
  3765. },
  3766. "notification-url": "https://packagist.org/downloads/",
  3767. "license": [
  3768. "BSD-2-Clause"
  3769. ],
  3770. "description": "PSR HTTP Message implementations",
  3771. "homepage": "https://github.com/zendframework/zend-diactoros",
  3772. "keywords": [
  3773. "http",
  3774. "psr",
  3775. "psr-7"
  3776. ],
  3777. "time": "2018-01-04T18:21:48+00:00"
  3778. },
  3779. {
  3780. "name": "zendframework/zend-escaper",
  3781. "version": "2.5.2",
  3782. "source": {
  3783. "type": "git",
  3784. "url": "https://github.com/zendframework/zend-escaper.git",
  3785. "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e"
  3786. },
  3787. "dist": {
  3788. "type": "zip",
  3789. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
  3790. "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
  3791. "shasum": ""
  3792. },
  3793. "require": {
  3794. "php": ">=5.5"
  3795. },
  3796. "require-dev": {
  3797. "fabpot/php-cs-fixer": "1.7.*",
  3798. "phpunit/phpunit": "~4.0"
  3799. },
  3800. "type": "library",
  3801. "extra": {
  3802. "branch-alias": {
  3803. "dev-master": "2.5-dev",
  3804. "dev-develop": "2.6-dev"
  3805. }
  3806. },
  3807. "autoload": {
  3808. "psr-4": {
  3809. "Zend\\Escaper\\": "src/"
  3810. }
  3811. },
  3812. "notification-url": "https://packagist.org/downloads/",
  3813. "license": [
  3814. "BSD-3-Clause"
  3815. ],
  3816. "homepage": "https://github.com/zendframework/zend-escaper",
  3817. "keywords": [
  3818. "escaper",
  3819. "zf2"
  3820. ],
  3821. "time": "2016-06-30T19:48:38+00:00"
  3822. },
  3823. {
  3824. "name": "zendframework/zend-feed",
  3825. "version": "2.9.0",
  3826. "source": {
  3827. "type": "git",
  3828. "url": "https://github.com/zendframework/zend-feed.git",
  3829. "reference": "abe88686124d492e0a2a84656f15e5482bfbe030"
  3830. },
  3831. "dist": {
  3832. "type": "zip",
  3833. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/abe88686124d492e0a2a84656f15e5482bfbe030",
  3834. "reference": "abe88686124d492e0a2a84656f15e5482bfbe030",
  3835. "shasum": ""
  3836. },
  3837. "require": {
  3838. "php": "^5.6 || ^7.0",
  3839. "zendframework/zend-escaper": "^2.5.2",
  3840. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  3841. },
  3842. "require-dev": {
  3843. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  3844. "psr/http-message": "^1.0.1",
  3845. "zendframework/zend-cache": "^2.7.2",
  3846. "zendframework/zend-coding-standard": "~1.0.0",
  3847. "zendframework/zend-db": "^2.8.2",
  3848. "zendframework/zend-http": "^2.7",
  3849. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  3850. "zendframework/zend-validator": "^2.10.1"
  3851. },
  3852. "suggest": {
  3853. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  3854. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  3855. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  3856. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  3857. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  3858. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  3859. },
  3860. "type": "library",
  3861. "extra": {
  3862. "branch-alias": {
  3863. "dev-master": "2.9-dev",
  3864. "dev-develop": "2.10-dev"
  3865. }
  3866. },
  3867. "autoload": {
  3868. "psr-4": {
  3869. "Zend\\Feed\\": "src/"
  3870. }
  3871. },
  3872. "notification-url": "https://packagist.org/downloads/",
  3873. "license": [
  3874. "BSD-3-Clause"
  3875. ],
  3876. "description": "provides functionality for consuming RSS and Atom feeds",
  3877. "keywords": [
  3878. "ZendFramework",
  3879. "feed",
  3880. "zf"
  3881. ],
  3882. "time": "2017-12-04T17:59:38+00:00"
  3883. },
  3884. {
  3885. "name": "zendframework/zend-stdlib",
  3886. "version": "3.1.0",
  3887. "source": {
  3888. "type": "git",
  3889. "url": "https://github.com/zendframework/zend-stdlib.git",
  3890. "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78"
  3891. },
  3892. "dist": {
  3893. "type": "zip",
  3894. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/debedcfc373a293f9250cc9aa03cf121428c8e78",
  3895. "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78",
  3896. "shasum": ""
  3897. },
  3898. "require": {
  3899. "php": "^5.6 || ^7.0"
  3900. },
  3901. "require-dev": {
  3902. "athletic/athletic": "~0.1",
  3903. "phpunit/phpunit": "~4.0",
  3904. "squizlabs/php_codesniffer": "^2.6.2"
  3905. },
  3906. "type": "library",
  3907. "extra": {
  3908. "branch-alias": {
  3909. "dev-master": "3.1-dev",
  3910. "dev-develop": "3.2-dev"
  3911. }
  3912. },
  3913. "autoload": {
  3914. "psr-4": {
  3915. "Zend\\Stdlib\\": "src/"
  3916. }
  3917. },
  3918. "notification-url": "https://packagist.org/downloads/",
  3919. "license": [
  3920. "BSD-3-Clause"
  3921. ],
  3922. "homepage": "https://github.com/zendframework/zend-stdlib",
  3923. "keywords": [
  3924. "stdlib",
  3925. "zf2"
  3926. ],
  3927. "time": "2016-09-13T14:38:50+00:00"
  3928. }
  3929. ],
  3930. "packages-dev": [
  3931. {
  3932. "name": "behat/mink",
  3933. "version": "dev-master",
  3934. "source": {
  3935. "type": "git",
  3936. "url": "https://github.com/minkphp/Mink.git",
  3937. "reference": "04ab7af68536ac2c80fd6c08a6fd3620d3409891"
  3938. },
  3939. "dist": {
  3940. "type": "zip",
  3941. "url": "https://api.github.com/repos/minkphp/Mink/zipball/04ab7af68536ac2c80fd6c08a6fd3620d3409891",
  3942. "reference": "04ab7af68536ac2c80fd6c08a6fd3620d3409891",
  3943. "shasum": ""
  3944. },
  3945. "require": {
  3946. "php": ">=5.3.1",
  3947. "symfony/css-selector": "^2.7|^3.0|^4.0"
  3948. },
  3949. "require-dev": {
  3950. "symfony/phpunit-bridge": "^3.3|^4.0"
  3951. },
  3952. "suggest": {
  3953. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  3954. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  3955. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  3956. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)"
  3957. },
  3958. "type": "library",
  3959. "extra": {
  3960. "branch-alias": {
  3961. "dev-master": "1.7.x-dev"
  3962. }
  3963. },
  3964. "autoload": {
  3965. "psr-4": {
  3966. "Behat\\Mink\\": "src/"
  3967. }
  3968. },
  3969. "notification-url": "https://packagist.org/downloads/",
  3970. "license": [
  3971. "MIT"
  3972. ],
  3973. "authors": [
  3974. {
  3975. "name": "Konstantin Kudryashov",
  3976. "email": "ever.zet@gmail.com",
  3977. "homepage": "http://everzet.com"
  3978. }
  3979. ],
  3980. "description": "Browser controller/emulator abstraction for PHP",
  3981. "homepage": "http://mink.behat.org/",
  3982. "keywords": [
  3983. "browser",
  3984. "testing",
  3985. "web"
  3986. ],
  3987. "time": "2018-01-07T17:25:05+00:00"
  3988. },
  3989. {
  3990. "name": "behat/mink-browserkit-driver",
  3991. "version": "v1.3.2",
  3992. "source": {
  3993. "type": "git",
  3994. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  3995. "reference": "10e67fb4a295efcd62ea0bf16025a85ea19534fb"
  3996. },
  3997. "dist": {
  3998. "type": "zip",
  3999. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/10e67fb4a295efcd62ea0bf16025a85ea19534fb",
  4000. "reference": "10e67fb4a295efcd62ea0bf16025a85ea19534fb",
  4001. "shasum": ""
  4002. },
  4003. "require": {
  4004. "behat/mink": "^1.7.1@dev",
  4005. "php": ">=5.3.6",
  4006. "symfony/browser-kit": "~2.3|~3.0",
  4007. "symfony/dom-crawler": "~2.3|~3.0"
  4008. },
  4009. "require-dev": {
  4010. "silex/silex": "~1.2",
  4011. "symfony/phpunit-bridge": "~2.7|~3.0"
  4012. },
  4013. "type": "mink-driver",
  4014. "extra": {
  4015. "branch-alias": {
  4016. "dev-master": "1.3.x-dev"
  4017. }
  4018. },
  4019. "autoload": {
  4020. "psr-4": {
  4021. "Behat\\Mink\\Driver\\": "src/"
  4022. }
  4023. },
  4024. "notification-url": "https://packagist.org/downloads/",
  4025. "license": [
  4026. "MIT"
  4027. ],
  4028. "authors": [
  4029. {
  4030. "name": "Konstantin Kudryashov",
  4031. "email": "ever.zet@gmail.com",
  4032. "homepage": "http://everzet.com"
  4033. }
  4034. ],
  4035. "description": "Symfony2 BrowserKit driver for Mink framework",
  4036. "homepage": "http://mink.behat.org/",
  4037. "keywords": [
  4038. "Mink",
  4039. "Symfony2",
  4040. "browser",
  4041. "testing"
  4042. ],
  4043. "time": "2016-03-05T08:59:47+00:00"
  4044. },
  4045. {
  4046. "name": "behat/mink-goutte-driver",
  4047. "version": "v1.2.1",
  4048. "source": {
  4049. "type": "git",
  4050. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  4051. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  4052. },
  4053. "dist": {
  4054. "type": "zip",
  4055. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  4056. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  4057. "shasum": ""
  4058. },
  4059. "require": {
  4060. "behat/mink": "~1.6@dev",
  4061. "behat/mink-browserkit-driver": "~1.2@dev",
  4062. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  4063. "php": ">=5.3.1"
  4064. },
  4065. "require-dev": {
  4066. "symfony/phpunit-bridge": "~2.7|~3.0"
  4067. },
  4068. "type": "mink-driver",
  4069. "extra": {
  4070. "branch-alias": {
  4071. "dev-master": "1.2.x-dev"
  4072. }
  4073. },
  4074. "autoload": {
  4075. "psr-4": {
  4076. "Behat\\Mink\\Driver\\": "src/"
  4077. }
  4078. },
  4079. "notification-url": "https://packagist.org/downloads/",
  4080. "license": [
  4081. "MIT"
  4082. ],
  4083. "authors": [
  4084. {
  4085. "name": "Konstantin Kudryashov",
  4086. "email": "ever.zet@gmail.com",
  4087. "homepage": "http://everzet.com"
  4088. }
  4089. ],
  4090. "description": "Goutte driver for Mink framework",
  4091. "homepage": "http://mink.behat.org/",
  4092. "keywords": [
  4093. "browser",
  4094. "goutte",
  4095. "headless",
  4096. "testing"
  4097. ],
  4098. "time": "2016-03-05T09:04:22+00:00"
  4099. },
  4100. {
  4101. "name": "doctrine/instantiator",
  4102. "version": "1.0.5",
  4103. "source": {
  4104. "type": "git",
  4105. "url": "https://github.com/doctrine/instantiator.git",
  4106. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  4107. },
  4108. "dist": {
  4109. "type": "zip",
  4110. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  4111. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  4112. "shasum": ""
  4113. },
  4114. "require": {
  4115. "php": ">=5.3,<8.0-DEV"
  4116. },
  4117. "require-dev": {
  4118. "athletic/athletic": "~0.1.8",
  4119. "ext-pdo": "*",
  4120. "ext-phar": "*",
  4121. "phpunit/phpunit": "~4.0",
  4122. "squizlabs/php_codesniffer": "~2.0"
  4123. },
  4124. "type": "library",
  4125. "extra": {
  4126. "branch-alias": {
  4127. "dev-master": "1.0.x-dev"
  4128. }
  4129. },
  4130. "autoload": {
  4131. "psr-4": {
  4132. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  4133. }
  4134. },
  4135. "notification-url": "https://packagist.org/downloads/",
  4136. "license": [
  4137. "MIT"
  4138. ],
  4139. "authors": [
  4140. {
  4141. "name": "Marco Pivetta",
  4142. "email": "ocramius@gmail.com",
  4143. "homepage": "http://ocramius.github.com/"
  4144. }
  4145. ],
  4146. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  4147. "homepage": "https://github.com/doctrine/instantiator",
  4148. "keywords": [
  4149. "constructor",
  4150. "instantiate"
  4151. ],
  4152. "time": "2015-06-14T21:17:01+00:00"
  4153. },
  4154. {
  4155. "name": "drupal/coder",
  4156. "version": "8.2.12",
  4157. "source": {
  4158. "type": "git",
  4159. "url": "https://git.drupal.org/project/coder.git",
  4160. "reference": "984c54a7b1e8f27ff1c32348df69712afd86b17f"
  4161. },
  4162. "require": {
  4163. "ext-mbstring": "*",
  4164. "php": ">=5.4.0",
  4165. "squizlabs/php_codesniffer": ">=2.8.1 <3.0",
  4166. "symfony/yaml": ">=2.0.0"
  4167. },
  4168. "require-dev": {
  4169. "phpunit/phpunit": ">=3.7 <6"
  4170. },
  4171. "type": "phpcodesniffer-standard",
  4172. "notification-url": "https://packagist.org/downloads/",
  4173. "license": [
  4174. "GPL-2.0+"
  4175. ],
  4176. "description": "Coder is a library to review Drupal code.",
  4177. "homepage": "https://www.drupal.org/project/coder",
  4178. "keywords": [
  4179. "code review",
  4180. "phpcs",
  4181. "standards"
  4182. ],
  4183. "time": "2017-03-18T10:28:49+00:00"
  4184. },
  4185. {
  4186. "name": "fabpot/goutte",
  4187. "version": "v3.2.2",
  4188. "source": {
  4189. "type": "git",
  4190. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  4191. "reference": "395f61d7c2e15a813839769553a4de16fa3b3c96"
  4192. },
  4193. "dist": {
  4194. "type": "zip",
  4195. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/395f61d7c2e15a813839769553a4de16fa3b3c96",
  4196. "reference": "395f61d7c2e15a813839769553a4de16fa3b3c96",
  4197. "shasum": ""
  4198. },
  4199. "require": {
  4200. "guzzlehttp/guzzle": "^6.0",
  4201. "php": ">=5.5.0",
  4202. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  4203. "symfony/css-selector": "~2.1|~3.0|~4.0",
  4204. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  4205. },
  4206. "require-dev": {
  4207. "symfony/phpunit-bridge": "^3.3 || ^4"
  4208. },
  4209. "type": "application",
  4210. "extra": {
  4211. "branch-alias": {
  4212. "dev-master": "3.2-dev"
  4213. }
  4214. },
  4215. "autoload": {
  4216. "psr-4": {
  4217. "Goutte\\": "Goutte"
  4218. },
  4219. "exclude-from-classmap": [
  4220. "Goutte/Tests"
  4221. ]
  4222. },
  4223. "notification-url": "https://packagist.org/downloads/",
  4224. "license": [
  4225. "MIT"
  4226. ],
  4227. "authors": [
  4228. {
  4229. "name": "Fabien Potencier",
  4230. "email": "fabien@symfony.com"
  4231. }
  4232. ],
  4233. "description": "A simple PHP Web Scraper",
  4234. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  4235. "keywords": [
  4236. "scraper"
  4237. ],
  4238. "time": "2017-11-19T08:45:40+00:00"
  4239. },
  4240. {
  4241. "name": "jcalderonzumba/gastonjs",
  4242. "version": "v1.2.0",
  4243. "source": {
  4244. "type": "git",
  4245. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  4246. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  4247. },
  4248. "dist": {
  4249. "type": "zip",
  4250. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  4251. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  4252. "shasum": ""
  4253. },
  4254. "require": {
  4255. "guzzlehttp/guzzle": "~5.0|~6.0",
  4256. "php": ">=5.4"
  4257. },
  4258. "require-dev": {
  4259. "phpunit/phpunit": "~4.6",
  4260. "silex/silex": "~1.2",
  4261. "symfony/phpunit-bridge": "~2.7",
  4262. "symfony/process": "~2.1"
  4263. },
  4264. "type": "phantomjs-api",
  4265. "extra": {
  4266. "branch-alias": {
  4267. "dev-master": "1.1.x-dev"
  4268. }
  4269. },
  4270. "autoload": {
  4271. "psr-4": {
  4272. "Zumba\\GastonJS\\": "src"
  4273. }
  4274. },
  4275. "notification-url": "https://packagist.org/downloads/",
  4276. "license": [
  4277. "MIT"
  4278. ],
  4279. "authors": [
  4280. {
  4281. "name": "Juan Francisco Calderón Zumba",
  4282. "email": "juanfcz@gmail.com",
  4283. "homepage": "http://github.com/jcalderonzumba"
  4284. }
  4285. ],
  4286. "description": "PhantomJS API based server for webpage automation",
  4287. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  4288. "keywords": [
  4289. "api",
  4290. "automation",
  4291. "browser",
  4292. "headless",
  4293. "phantomjs"
  4294. ],
  4295. "time": "2017-03-31T07:31:47+00:00"
  4296. },
  4297. {
  4298. "name": "jcalderonzumba/mink-phantomjs-driver",
  4299. "version": "v0.3.3",
  4300. "source": {
  4301. "type": "git",
  4302. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  4303. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  4304. },
  4305. "dist": {
  4306. "type": "zip",
  4307. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  4308. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  4309. "shasum": ""
  4310. },
  4311. "require": {
  4312. "behat/mink": "~1.7",
  4313. "jcalderonzumba/gastonjs": "~1.0",
  4314. "php": ">=5.4",
  4315. "twig/twig": "~1.20|~2.0"
  4316. },
  4317. "require-dev": {
  4318. "mink/driver-testsuite": "dev-master",
  4319. "phpunit/phpunit": "~4.6"
  4320. },
  4321. "type": "mink-driver",
  4322. "extra": {
  4323. "branch-alias": {
  4324. "dev-master": "0.4.x-dev"
  4325. }
  4326. },
  4327. "autoload": {
  4328. "psr-4": {
  4329. "Zumba\\Mink\\Driver\\": "src"
  4330. }
  4331. },
  4332. "notification-url": "https://packagist.org/downloads/",
  4333. "license": [
  4334. "MIT"
  4335. ],
  4336. "authors": [
  4337. {
  4338. "name": "Juan Francisco Calderón Zumba",
  4339. "email": "juanfcz@gmail.com",
  4340. "homepage": "http://github.com/jcalderonzumba"
  4341. }
  4342. ],
  4343. "description": "PhantomJS driver for Mink framework",
  4344. "homepage": "http://mink.behat.org/",
  4345. "keywords": [
  4346. "ajax",
  4347. "browser",
  4348. "headless",
  4349. "javascript",
  4350. "phantomjs",
  4351. "testing"
  4352. ],
  4353. "time": "2016-12-01T10:57:30+00:00"
  4354. },
  4355. {
  4356. "name": "mikey179/vfsStream",
  4357. "version": "v1.6.5",
  4358. "source": {
  4359. "type": "git",
  4360. "url": "https://github.com/mikey179/vfsStream.git",
  4361. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145"
  4362. },
  4363. "dist": {
  4364. "type": "zip",
  4365. "url": "https://api.github.com/repos/mikey179/vfsStream/zipball/d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  4366. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  4367. "shasum": ""
  4368. },
  4369. "require": {
  4370. "php": ">=5.3.0"
  4371. },
  4372. "require-dev": {
  4373. "phpunit/phpunit": "~4.5"
  4374. },
  4375. "type": "library",
  4376. "extra": {
  4377. "branch-alias": {
  4378. "dev-master": "1.6.x-dev"
  4379. }
  4380. },
  4381. "autoload": {
  4382. "psr-0": {
  4383. "org\\bovigo\\vfs\\": "src/main/php"
  4384. }
  4385. },
  4386. "notification-url": "https://packagist.org/downloads/",
  4387. "license": [
  4388. "BSD-3-Clause"
  4389. ],
  4390. "authors": [
  4391. {
  4392. "name": "Frank Kleine",
  4393. "homepage": "http://frankkleine.de/",
  4394. "role": "Developer"
  4395. }
  4396. ],
  4397. "description": "Virtual file system to mock the real file system in unit tests.",
  4398. "homepage": "http://vfs.bovigo.org/",
  4399. "time": "2017-08-01T08:02:14+00:00"
  4400. },
  4401. {
  4402. "name": "phpdocumentor/reflection-common",
  4403. "version": "1.0.1",
  4404. "source": {
  4405. "type": "git",
  4406. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  4407. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  4408. },
  4409. "dist": {
  4410. "type": "zip",
  4411. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  4412. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  4413. "shasum": ""
  4414. },
  4415. "require": {
  4416. "php": ">=5.5"
  4417. },
  4418. "require-dev": {
  4419. "phpunit/phpunit": "^4.6"
  4420. },
  4421. "type": "library",
  4422. "extra": {
  4423. "branch-alias": {
  4424. "dev-master": "1.0.x-dev"
  4425. }
  4426. },
  4427. "autoload": {
  4428. "psr-4": {
  4429. "phpDocumentor\\Reflection\\": [
  4430. "src"
  4431. ]
  4432. }
  4433. },
  4434. "notification-url": "https://packagist.org/downloads/",
  4435. "license": [
  4436. "MIT"
  4437. ],
  4438. "authors": [
  4439. {
  4440. "name": "Jaap van Otterdijk",
  4441. "email": "opensource@ijaap.nl"
  4442. }
  4443. ],
  4444. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  4445. "homepage": "http://www.phpdoc.org",
  4446. "keywords": [
  4447. "FQSEN",
  4448. "phpDocumentor",
  4449. "phpdoc",
  4450. "reflection",
  4451. "static analysis"
  4452. ],
  4453. "time": "2017-09-11T18:02:19+00:00"
  4454. },
  4455. {
  4456. "name": "phpdocumentor/reflection-docblock",
  4457. "version": "4.2.0",
  4458. "source": {
  4459. "type": "git",
  4460. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  4461. "reference": "66465776cfc249844bde6d117abff1d22e06c2da"
  4462. },
  4463. "dist": {
  4464. "type": "zip",
  4465. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/66465776cfc249844bde6d117abff1d22e06c2da",
  4466. "reference": "66465776cfc249844bde6d117abff1d22e06c2da",
  4467. "shasum": ""
  4468. },
  4469. "require": {
  4470. "php": "^7.0",
  4471. "phpdocumentor/reflection-common": "^1.0.0",
  4472. "phpdocumentor/type-resolver": "^0.4.0",
  4473. "webmozart/assert": "^1.0"
  4474. },
  4475. "require-dev": {
  4476. "doctrine/instantiator": "~1.0.5",
  4477. "mockery/mockery": "^1.0",
  4478. "phpunit/phpunit": "^6.4"
  4479. },
  4480. "type": "library",
  4481. "extra": {
  4482. "branch-alias": {
  4483. "dev-master": "4.x-dev"
  4484. }
  4485. },
  4486. "autoload": {
  4487. "psr-4": {
  4488. "phpDocumentor\\Reflection\\": [
  4489. "src/"
  4490. ]
  4491. }
  4492. },
  4493. "notification-url": "https://packagist.org/downloads/",
  4494. "license": [
  4495. "MIT"
  4496. ],
  4497. "authors": [
  4498. {
  4499. "name": "Mike van Riel",
  4500. "email": "me@mikevanriel.com"
  4501. }
  4502. ],
  4503. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  4504. "time": "2017-11-27T17:38:31+00:00"
  4505. },
  4506. {
  4507. "name": "phpdocumentor/type-resolver",
  4508. "version": "0.4.0",
  4509. "source": {
  4510. "type": "git",
  4511. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  4512. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  4513. },
  4514. "dist": {
  4515. "type": "zip",
  4516. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  4517. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  4518. "shasum": ""
  4519. },
  4520. "require": {
  4521. "php": "^5.5 || ^7.0",
  4522. "phpdocumentor/reflection-common": "^1.0"
  4523. },
  4524. "require-dev": {
  4525. "mockery/mockery": "^0.9.4",
  4526. "phpunit/phpunit": "^5.2||^4.8.24"
  4527. },
  4528. "type": "library",
  4529. "extra": {
  4530. "branch-alias": {
  4531. "dev-master": "1.0.x-dev"
  4532. }
  4533. },
  4534. "autoload": {
  4535. "psr-4": {
  4536. "phpDocumentor\\Reflection\\": [
  4537. "src/"
  4538. ]
  4539. }
  4540. },
  4541. "notification-url": "https://packagist.org/downloads/",
  4542. "license": [
  4543. "MIT"
  4544. ],
  4545. "authors": [
  4546. {
  4547. "name": "Mike van Riel",
  4548. "email": "me@mikevanriel.com"
  4549. }
  4550. ],
  4551. "time": "2017-07-14T14:27:02+00:00"
  4552. },
  4553. {
  4554. "name": "phpspec/prophecy",
  4555. "version": "1.7.3",
  4556. "source": {
  4557. "type": "git",
  4558. "url": "https://github.com/phpspec/prophecy.git",
  4559. "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf"
  4560. },
  4561. "dist": {
  4562. "type": "zip",
  4563. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf",
  4564. "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf",
  4565. "shasum": ""
  4566. },
  4567. "require": {
  4568. "doctrine/instantiator": "^1.0.2",
  4569. "php": "^5.3|^7.0",
  4570. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  4571. "sebastian/comparator": "^1.1|^2.0",
  4572. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  4573. },
  4574. "require-dev": {
  4575. "phpspec/phpspec": "^2.5|^3.2",
  4576. "phpunit/phpunit": "^4.8.35 || ^5.7"
  4577. },
  4578. "type": "library",
  4579. "extra": {
  4580. "branch-alias": {
  4581. "dev-master": "1.7.x-dev"
  4582. }
  4583. },
  4584. "autoload": {
  4585. "psr-0": {
  4586. "Prophecy\\": "src/"
  4587. }
  4588. },
  4589. "notification-url": "https://packagist.org/downloads/",
  4590. "license": [
  4591. "MIT"
  4592. ],
  4593. "authors": [
  4594. {
  4595. "name": "Konstantin Kudryashov",
  4596. "email": "ever.zet@gmail.com",
  4597. "homepage": "http://everzet.com"
  4598. },
  4599. {
  4600. "name": "Marcello Duarte",
  4601. "email": "marcello.duarte@gmail.com"
  4602. }
  4603. ],
  4604. "description": "Highly opinionated mocking framework for PHP 5.3+",
  4605. "homepage": "https://github.com/phpspec/prophecy",
  4606. "keywords": [
  4607. "Double",
  4608. "Dummy",
  4609. "fake",
  4610. "mock",
  4611. "spy",
  4612. "stub"
  4613. ],
  4614. "time": "2017-11-24T13:59:53+00:00"
  4615. },
  4616. {
  4617. "name": "phpunit/php-code-coverage",
  4618. "version": "2.2.4",
  4619. "source": {
  4620. "type": "git",
  4621. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  4622. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
  4623. },
  4624. "dist": {
  4625. "type": "zip",
  4626. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  4627. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  4628. "shasum": ""
  4629. },
  4630. "require": {
  4631. "php": ">=5.3.3",
  4632. "phpunit/php-file-iterator": "~1.3",
  4633. "phpunit/php-text-template": "~1.2",
  4634. "phpunit/php-token-stream": "~1.3",
  4635. "sebastian/environment": "^1.3.2",
  4636. "sebastian/version": "~1.0"
  4637. },
  4638. "require-dev": {
  4639. "ext-xdebug": ">=2.1.4",
  4640. "phpunit/phpunit": "~4"
  4641. },
  4642. "suggest": {
  4643. "ext-dom": "*",
  4644. "ext-xdebug": ">=2.2.1",
  4645. "ext-xmlwriter": "*"
  4646. },
  4647. "type": "library",
  4648. "extra": {
  4649. "branch-alias": {
  4650. "dev-master": "2.2.x-dev"
  4651. }
  4652. },
  4653. "autoload": {
  4654. "classmap": [
  4655. "src/"
  4656. ]
  4657. },
  4658. "notification-url": "https://packagist.org/downloads/",
  4659. "license": [
  4660. "BSD-3-Clause"
  4661. ],
  4662. "authors": [
  4663. {
  4664. "name": "Sebastian Bergmann",
  4665. "email": "sb@sebastian-bergmann.de",
  4666. "role": "lead"
  4667. }
  4668. ],
  4669. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  4670. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  4671. "keywords": [
  4672. "coverage",
  4673. "testing",
  4674. "xunit"
  4675. ],
  4676. "time": "2015-10-06T15:47:00+00:00"
  4677. },
  4678. {
  4679. "name": "phpunit/php-file-iterator",
  4680. "version": "1.4.5",
  4681. "source": {
  4682. "type": "git",
  4683. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  4684. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  4685. },
  4686. "dist": {
  4687. "type": "zip",
  4688. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  4689. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  4690. "shasum": ""
  4691. },
  4692. "require": {
  4693. "php": ">=5.3.3"
  4694. },
  4695. "type": "library",
  4696. "extra": {
  4697. "branch-alias": {
  4698. "dev-master": "1.4.x-dev"
  4699. }
  4700. },
  4701. "autoload": {
  4702. "classmap": [
  4703. "src/"
  4704. ]
  4705. },
  4706. "notification-url": "https://packagist.org/downloads/",
  4707. "license": [
  4708. "BSD-3-Clause"
  4709. ],
  4710. "authors": [
  4711. {
  4712. "name": "Sebastian Bergmann",
  4713. "email": "sb@sebastian-bergmann.de",
  4714. "role": "lead"
  4715. }
  4716. ],
  4717. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  4718. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  4719. "keywords": [
  4720. "filesystem",
  4721. "iterator"
  4722. ],
  4723. "time": "2017-11-27T13:52:08+00:00"
  4724. },
  4725. {
  4726. "name": "phpunit/php-text-template",
  4727. "version": "1.2.1",
  4728. "source": {
  4729. "type": "git",
  4730. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  4731. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  4732. },
  4733. "dist": {
  4734. "type": "zip",
  4735. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4736. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4737. "shasum": ""
  4738. },
  4739. "require": {
  4740. "php": ">=5.3.3"
  4741. },
  4742. "type": "library",
  4743. "autoload": {
  4744. "classmap": [
  4745. "src/"
  4746. ]
  4747. },
  4748. "notification-url": "https://packagist.org/downloads/",
  4749. "license": [
  4750. "BSD-3-Clause"
  4751. ],
  4752. "authors": [
  4753. {
  4754. "name": "Sebastian Bergmann",
  4755. "email": "sebastian@phpunit.de",
  4756. "role": "lead"
  4757. }
  4758. ],
  4759. "description": "Simple template engine.",
  4760. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  4761. "keywords": [
  4762. "template"
  4763. ],
  4764. "time": "2015-06-21T13:50:34+00:00"
  4765. },
  4766. {
  4767. "name": "phpunit/php-timer",
  4768. "version": "1.0.9",
  4769. "source": {
  4770. "type": "git",
  4771. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4772. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  4773. },
  4774. "dist": {
  4775. "type": "zip",
  4776. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  4777. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  4778. "shasum": ""
  4779. },
  4780. "require": {
  4781. "php": "^5.3.3 || ^7.0"
  4782. },
  4783. "require-dev": {
  4784. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  4785. },
  4786. "type": "library",
  4787. "extra": {
  4788. "branch-alias": {
  4789. "dev-master": "1.0-dev"
  4790. }
  4791. },
  4792. "autoload": {
  4793. "classmap": [
  4794. "src/"
  4795. ]
  4796. },
  4797. "notification-url": "https://packagist.org/downloads/",
  4798. "license": [
  4799. "BSD-3-Clause"
  4800. ],
  4801. "authors": [
  4802. {
  4803. "name": "Sebastian Bergmann",
  4804. "email": "sb@sebastian-bergmann.de",
  4805. "role": "lead"
  4806. }
  4807. ],
  4808. "description": "Utility class for timing",
  4809. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4810. "keywords": [
  4811. "timer"
  4812. ],
  4813. "time": "2017-02-26T11:10:40+00:00"
  4814. },
  4815. {
  4816. "name": "phpunit/php-token-stream",
  4817. "version": "1.4.12",
  4818. "source": {
  4819. "type": "git",
  4820. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  4821. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16"
  4822. },
  4823. "dist": {
  4824. "type": "zip",
  4825. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/1ce90ba27c42e4e44e6d8458241466380b51fa16",
  4826. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16",
  4827. "shasum": ""
  4828. },
  4829. "require": {
  4830. "ext-tokenizer": "*",
  4831. "php": ">=5.3.3"
  4832. },
  4833. "require-dev": {
  4834. "phpunit/phpunit": "~4.2"
  4835. },
  4836. "type": "library",
  4837. "extra": {
  4838. "branch-alias": {
  4839. "dev-master": "1.4-dev"
  4840. }
  4841. },
  4842. "autoload": {
  4843. "classmap": [
  4844. "src/"
  4845. ]
  4846. },
  4847. "notification-url": "https://packagist.org/downloads/",
  4848. "license": [
  4849. "BSD-3-Clause"
  4850. ],
  4851. "authors": [
  4852. {
  4853. "name": "Sebastian Bergmann",
  4854. "email": "sebastian@phpunit.de"
  4855. }
  4856. ],
  4857. "description": "Wrapper around PHP's tokenizer extension.",
  4858. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  4859. "keywords": [
  4860. "tokenizer"
  4861. ],
  4862. "time": "2017-12-04T08:55:13+00:00"
  4863. },
  4864. {
  4865. "name": "phpunit/phpunit",
  4866. "version": "4.8.36",
  4867. "source": {
  4868. "type": "git",
  4869. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4870. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517"
  4871. },
  4872. "dist": {
  4873. "type": "zip",
  4874. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/46023de9a91eec7dfb06cc56cb4e260017298517",
  4875. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517",
  4876. "shasum": ""
  4877. },
  4878. "require": {
  4879. "ext-dom": "*",
  4880. "ext-json": "*",
  4881. "ext-pcre": "*",
  4882. "ext-reflection": "*",
  4883. "ext-spl": "*",
  4884. "php": ">=5.3.3",
  4885. "phpspec/prophecy": "^1.3.1",
  4886. "phpunit/php-code-coverage": "~2.1",
  4887. "phpunit/php-file-iterator": "~1.4",
  4888. "phpunit/php-text-template": "~1.2",
  4889. "phpunit/php-timer": "^1.0.6",
  4890. "phpunit/phpunit-mock-objects": "~2.3",
  4891. "sebastian/comparator": "~1.2.2",
  4892. "sebastian/diff": "~1.2",
  4893. "sebastian/environment": "~1.3",
  4894. "sebastian/exporter": "~1.2",
  4895. "sebastian/global-state": "~1.0",
  4896. "sebastian/version": "~1.0",
  4897. "symfony/yaml": "~2.1|~3.0"
  4898. },
  4899. "suggest": {
  4900. "phpunit/php-invoker": "~1.1"
  4901. },
  4902. "bin": [
  4903. "phpunit"
  4904. ],
  4905. "type": "library",
  4906. "extra": {
  4907. "branch-alias": {
  4908. "dev-master": "4.8.x-dev"
  4909. }
  4910. },
  4911. "autoload": {
  4912. "classmap": [
  4913. "src/"
  4914. ]
  4915. },
  4916. "notification-url": "https://packagist.org/downloads/",
  4917. "license": [
  4918. "BSD-3-Clause"
  4919. ],
  4920. "authors": [
  4921. {
  4922. "name": "Sebastian Bergmann",
  4923. "email": "sebastian@phpunit.de",
  4924. "role": "lead"
  4925. }
  4926. ],
  4927. "description": "The PHP Unit Testing framework.",
  4928. "homepage": "https://phpunit.de/",
  4929. "keywords": [
  4930. "phpunit",
  4931. "testing",
  4932. "xunit"
  4933. ],
  4934. "time": "2017-06-21T08:07:12+00:00"
  4935. },
  4936. {
  4937. "name": "phpunit/phpunit-mock-objects",
  4938. "version": "2.3.8",
  4939. "source": {
  4940. "type": "git",
  4941. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  4942. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
  4943. },
  4944. "dist": {
  4945. "type": "zip",
  4946. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  4947. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  4948. "shasum": ""
  4949. },
  4950. "require": {
  4951. "doctrine/instantiator": "^1.0.2",
  4952. "php": ">=5.3.3",
  4953. "phpunit/php-text-template": "~1.2",
  4954. "sebastian/exporter": "~1.2"
  4955. },
  4956. "require-dev": {
  4957. "phpunit/phpunit": "~4.4"
  4958. },
  4959. "suggest": {
  4960. "ext-soap": "*"
  4961. },
  4962. "type": "library",
  4963. "extra": {
  4964. "branch-alias": {
  4965. "dev-master": "2.3.x-dev"
  4966. }
  4967. },
  4968. "autoload": {
  4969. "classmap": [
  4970. "src/"
  4971. ]
  4972. },
  4973. "notification-url": "https://packagist.org/downloads/",
  4974. "license": [
  4975. "BSD-3-Clause"
  4976. ],
  4977. "authors": [
  4978. {
  4979. "name": "Sebastian Bergmann",
  4980. "email": "sb@sebastian-bergmann.de",
  4981. "role": "lead"
  4982. }
  4983. ],
  4984. "description": "Mock Object library for PHPUnit",
  4985. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  4986. "keywords": [
  4987. "mock",
  4988. "xunit"
  4989. ],
  4990. "time": "2015-10-02T06:51:40+00:00"
  4991. },
  4992. {
  4993. "name": "sebastian/comparator",
  4994. "version": "1.2.4",
  4995. "source": {
  4996. "type": "git",
  4997. "url": "https://github.com/sebastianbergmann/comparator.git",
  4998. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  4999. },
  5000. "dist": {
  5001. "type": "zip",
  5002. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  5003. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  5004. "shasum": ""
  5005. },
  5006. "require": {
  5007. "php": ">=5.3.3",
  5008. "sebastian/diff": "~1.2",
  5009. "sebastian/exporter": "~1.2 || ~2.0"
  5010. },
  5011. "require-dev": {
  5012. "phpunit/phpunit": "~4.4"
  5013. },
  5014. "type": "library",
  5015. "extra": {
  5016. "branch-alias": {
  5017. "dev-master": "1.2.x-dev"
  5018. }
  5019. },
  5020. "autoload": {
  5021. "classmap": [
  5022. "src/"
  5023. ]
  5024. },
  5025. "notification-url": "https://packagist.org/downloads/",
  5026. "license": [
  5027. "BSD-3-Clause"
  5028. ],
  5029. "authors": [
  5030. {
  5031. "name": "Jeff Welch",
  5032. "email": "whatthejeff@gmail.com"
  5033. },
  5034. {
  5035. "name": "Volker Dusch",
  5036. "email": "github@wallbash.com"
  5037. },
  5038. {
  5039. "name": "Bernhard Schussek",
  5040. "email": "bschussek@2bepublished.at"
  5041. },
  5042. {
  5043. "name": "Sebastian Bergmann",
  5044. "email": "sebastian@phpunit.de"
  5045. }
  5046. ],
  5047. "description": "Provides the functionality to compare PHP values for equality",
  5048. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  5049. "keywords": [
  5050. "comparator",
  5051. "compare",
  5052. "equality"
  5053. ],
  5054. "time": "2017-01-29T09:50:25+00:00"
  5055. },
  5056. {
  5057. "name": "sebastian/diff",
  5058. "version": "1.4.3",
  5059. "source": {
  5060. "type": "git",
  5061. "url": "https://github.com/sebastianbergmann/diff.git",
  5062. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
  5063. },
  5064. "dist": {
  5065. "type": "zip",
  5066. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  5067. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  5068. "shasum": ""
  5069. },
  5070. "require": {
  5071. "php": "^5.3.3 || ^7.0"
  5072. },
  5073. "require-dev": {
  5074. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  5075. },
  5076. "type": "library",
  5077. "extra": {
  5078. "branch-alias": {
  5079. "dev-master": "1.4-dev"
  5080. }
  5081. },
  5082. "autoload": {
  5083. "classmap": [
  5084. "src/"
  5085. ]
  5086. },
  5087. "notification-url": "https://packagist.org/downloads/",
  5088. "license": [
  5089. "BSD-3-Clause"
  5090. ],
  5091. "authors": [
  5092. {
  5093. "name": "Kore Nordmann",
  5094. "email": "mail@kore-nordmann.de"
  5095. },
  5096. {
  5097. "name": "Sebastian Bergmann",
  5098. "email": "sebastian@phpunit.de"
  5099. }
  5100. ],
  5101. "description": "Diff implementation",
  5102. "homepage": "https://github.com/sebastianbergmann/diff",
  5103. "keywords": [
  5104. "diff"
  5105. ],
  5106. "time": "2017-05-22T07:24:03+00:00"
  5107. },
  5108. {
  5109. "name": "sebastian/environment",
  5110. "version": "1.3.8",
  5111. "source": {
  5112. "type": "git",
  5113. "url": "https://github.com/sebastianbergmann/environment.git",
  5114. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea"
  5115. },
  5116. "dist": {
  5117. "type": "zip",
  5118. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  5119. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  5120. "shasum": ""
  5121. },
  5122. "require": {
  5123. "php": "^5.3.3 || ^7.0"
  5124. },
  5125. "require-dev": {
  5126. "phpunit/phpunit": "^4.8 || ^5.0"
  5127. },
  5128. "type": "library",
  5129. "extra": {
  5130. "branch-alias": {
  5131. "dev-master": "1.3.x-dev"
  5132. }
  5133. },
  5134. "autoload": {
  5135. "classmap": [
  5136. "src/"
  5137. ]
  5138. },
  5139. "notification-url": "https://packagist.org/downloads/",
  5140. "license": [
  5141. "BSD-3-Clause"
  5142. ],
  5143. "authors": [
  5144. {
  5145. "name": "Sebastian Bergmann",
  5146. "email": "sebastian@phpunit.de"
  5147. }
  5148. ],
  5149. "description": "Provides functionality to handle HHVM/PHP environments",
  5150. "homepage": "http://www.github.com/sebastianbergmann/environment",
  5151. "keywords": [
  5152. "Xdebug",
  5153. "environment",
  5154. "hhvm"
  5155. ],
  5156. "time": "2016-08-18T05:49:44+00:00"
  5157. },
  5158. {
  5159. "name": "sebastian/exporter",
  5160. "version": "1.2.2",
  5161. "source": {
  5162. "type": "git",
  5163. "url": "https://github.com/sebastianbergmann/exporter.git",
  5164. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4"
  5165. },
  5166. "dist": {
  5167. "type": "zip",
  5168. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/42c4c2eec485ee3e159ec9884f95b431287edde4",
  5169. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4",
  5170. "shasum": ""
  5171. },
  5172. "require": {
  5173. "php": ">=5.3.3",
  5174. "sebastian/recursion-context": "~1.0"
  5175. },
  5176. "require-dev": {
  5177. "ext-mbstring": "*",
  5178. "phpunit/phpunit": "~4.4"
  5179. },
  5180. "type": "library",
  5181. "extra": {
  5182. "branch-alias": {
  5183. "dev-master": "1.3.x-dev"
  5184. }
  5185. },
  5186. "autoload": {
  5187. "classmap": [
  5188. "src/"
  5189. ]
  5190. },
  5191. "notification-url": "https://packagist.org/downloads/",
  5192. "license": [
  5193. "BSD-3-Clause"
  5194. ],
  5195. "authors": [
  5196. {
  5197. "name": "Jeff Welch",
  5198. "email": "whatthejeff@gmail.com"
  5199. },
  5200. {
  5201. "name": "Volker Dusch",
  5202. "email": "github@wallbash.com"
  5203. },
  5204. {
  5205. "name": "Bernhard Schussek",
  5206. "email": "bschussek@2bepublished.at"
  5207. },
  5208. {
  5209. "name": "Sebastian Bergmann",
  5210. "email": "sebastian@phpunit.de"
  5211. },
  5212. {
  5213. "name": "Adam Harvey",
  5214. "email": "aharvey@php.net"
  5215. }
  5216. ],
  5217. "description": "Provides the functionality to export PHP variables for visualization",
  5218. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  5219. "keywords": [
  5220. "export",
  5221. "exporter"
  5222. ],
  5223. "time": "2016-06-17T09:04:28+00:00"
  5224. },
  5225. {
  5226. "name": "sebastian/global-state",
  5227. "version": "1.1.1",
  5228. "source": {
  5229. "type": "git",
  5230. "url": "https://github.com/sebastianbergmann/global-state.git",
  5231. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  5232. },
  5233. "dist": {
  5234. "type": "zip",
  5235. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  5236. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  5237. "shasum": ""
  5238. },
  5239. "require": {
  5240. "php": ">=5.3.3"
  5241. },
  5242. "require-dev": {
  5243. "phpunit/phpunit": "~4.2"
  5244. },
  5245. "suggest": {
  5246. "ext-uopz": "*"
  5247. },
  5248. "type": "library",
  5249. "extra": {
  5250. "branch-alias": {
  5251. "dev-master": "1.0-dev"
  5252. }
  5253. },
  5254. "autoload": {
  5255. "classmap": [
  5256. "src/"
  5257. ]
  5258. },
  5259. "notification-url": "https://packagist.org/downloads/",
  5260. "license": [
  5261. "BSD-3-Clause"
  5262. ],
  5263. "authors": [
  5264. {
  5265. "name": "Sebastian Bergmann",
  5266. "email": "sebastian@phpunit.de"
  5267. }
  5268. ],
  5269. "description": "Snapshotting of global state",
  5270. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  5271. "keywords": [
  5272. "global state"
  5273. ],
  5274. "time": "2015-10-12T03:26:01+00:00"
  5275. },
  5276. {
  5277. "name": "sebastian/recursion-context",
  5278. "version": "1.0.5",
  5279. "source": {
  5280. "type": "git",
  5281. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  5282. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7"
  5283. },
  5284. "dist": {
  5285. "type": "zip",
  5286. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  5287. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  5288. "shasum": ""
  5289. },
  5290. "require": {
  5291. "php": ">=5.3.3"
  5292. },
  5293. "require-dev": {
  5294. "phpunit/phpunit": "~4.4"
  5295. },
  5296. "type": "library",
  5297. "extra": {
  5298. "branch-alias": {
  5299. "dev-master": "1.0.x-dev"
  5300. }
  5301. },
  5302. "autoload": {
  5303. "classmap": [
  5304. "src/"
  5305. ]
  5306. },
  5307. "notification-url": "https://packagist.org/downloads/",
  5308. "license": [
  5309. "BSD-3-Clause"
  5310. ],
  5311. "authors": [
  5312. {
  5313. "name": "Jeff Welch",
  5314. "email": "whatthejeff@gmail.com"
  5315. },
  5316. {
  5317. "name": "Sebastian Bergmann",
  5318. "email": "sebastian@phpunit.de"
  5319. },
  5320. {
  5321. "name": "Adam Harvey",
  5322. "email": "aharvey@php.net"
  5323. }
  5324. ],
  5325. "description": "Provides functionality to recursively process PHP variables",
  5326. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  5327. "time": "2016-10-03T07:41:43+00:00"
  5328. },
  5329. {
  5330. "name": "squizlabs/php_codesniffer",
  5331. "version": "2.9.1",
  5332. "source": {
  5333. "type": "git",
  5334. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  5335. "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62"
  5336. },
  5337. "dist": {
  5338. "type": "zip",
  5339. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/dcbed1074f8244661eecddfc2a675430d8d33f62",
  5340. "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62",
  5341. "shasum": ""
  5342. },
  5343. "require": {
  5344. "ext-simplexml": "*",
  5345. "ext-tokenizer": "*",
  5346. "ext-xmlwriter": "*",
  5347. "php": ">=5.1.2"
  5348. },
  5349. "require-dev": {
  5350. "phpunit/phpunit": "~4.0"
  5351. },
  5352. "bin": [
  5353. "scripts/phpcs",
  5354. "scripts/phpcbf"
  5355. ],
  5356. "type": "library",
  5357. "extra": {
  5358. "branch-alias": {
  5359. "dev-master": "2.x-dev"
  5360. }
  5361. },
  5362. "autoload": {
  5363. "classmap": [
  5364. "CodeSniffer.php",
  5365. "CodeSniffer/CLI.php",
  5366. "CodeSniffer/Exception.php",
  5367. "CodeSniffer/File.php",
  5368. "CodeSniffer/Fixer.php",
  5369. "CodeSniffer/Report.php",
  5370. "CodeSniffer/Reporting.php",
  5371. "CodeSniffer/Sniff.php",
  5372. "CodeSniffer/Tokens.php",
  5373. "CodeSniffer/Reports/",
  5374. "CodeSniffer/Tokenizers/",
  5375. "CodeSniffer/DocGenerators/",
  5376. "CodeSniffer/Standards/AbstractPatternSniff.php",
  5377. "CodeSniffer/Standards/AbstractScopeSniff.php",
  5378. "CodeSniffer/Standards/AbstractVariableSniff.php",
  5379. "CodeSniffer/Standards/IncorrectPatternException.php",
  5380. "CodeSniffer/Standards/Generic/Sniffs/",
  5381. "CodeSniffer/Standards/MySource/Sniffs/",
  5382. "CodeSniffer/Standards/PEAR/Sniffs/",
  5383. "CodeSniffer/Standards/PSR1/Sniffs/",
  5384. "CodeSniffer/Standards/PSR2/Sniffs/",
  5385. "CodeSniffer/Standards/Squiz/Sniffs/",
  5386. "CodeSniffer/Standards/Zend/Sniffs/"
  5387. ]
  5388. },
  5389. "notification-url": "https://packagist.org/downloads/",
  5390. "license": [
  5391. "BSD-3-Clause"
  5392. ],
  5393. "authors": [
  5394. {
  5395. "name": "Greg Sherwood",
  5396. "role": "lead"
  5397. }
  5398. ],
  5399. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  5400. "homepage": "http://www.squizlabs.com/php-codesniffer",
  5401. "keywords": [
  5402. "phpcs",
  5403. "standards"
  5404. ],
  5405. "time": "2017-05-22T02:43:20+00:00"
  5406. },
  5407. {
  5408. "name": "symfony/browser-kit",
  5409. "version": "v3.4.3",
  5410. "source": {
  5411. "type": "git",
  5412. "url": "https://github.com/symfony/browser-kit.git",
  5413. "reference": "490f27762705c8489bd042fe3e9377a191dba9b4"
  5414. },
  5415. "dist": {
  5416. "type": "zip",
  5417. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/490f27762705c8489bd042fe3e9377a191dba9b4",
  5418. "reference": "490f27762705c8489bd042fe3e9377a191dba9b4",
  5419. "shasum": ""
  5420. },
  5421. "require": {
  5422. "php": "^5.5.9|>=7.0.8",
  5423. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  5424. },
  5425. "require-dev": {
  5426. "symfony/css-selector": "~2.8|~3.0|~4.0",
  5427. "symfony/process": "~2.8|~3.0|~4.0"
  5428. },
  5429. "suggest": {
  5430. "symfony/process": ""
  5431. },
  5432. "type": "library",
  5433. "extra": {
  5434. "branch-alias": {
  5435. "dev-master": "3.4-dev"
  5436. }
  5437. },
  5438. "autoload": {
  5439. "psr-4": {
  5440. "Symfony\\Component\\BrowserKit\\": ""
  5441. },
  5442. "exclude-from-classmap": [
  5443. "/Tests/"
  5444. ]
  5445. },
  5446. "notification-url": "https://packagist.org/downloads/",
  5447. "license": [
  5448. "MIT"
  5449. ],
  5450. "authors": [
  5451. {
  5452. "name": "Fabien Potencier",
  5453. "email": "fabien@symfony.com"
  5454. },
  5455. {
  5456. "name": "Symfony Community",
  5457. "homepage": "https://symfony.com/contributors"
  5458. }
  5459. ],
  5460. "description": "Symfony BrowserKit Component",
  5461. "homepage": "https://symfony.com",
  5462. "time": "2018-01-03T07:37:34+00:00"
  5463. },
  5464. {
  5465. "name": "symfony/css-selector",
  5466. "version": "v3.2.14",
  5467. "source": {
  5468. "type": "git",
  5469. "url": "https://github.com/symfony/css-selector.git",
  5470. "reference": "02983c144038e697c959e6b06ef6666de759ccbc"
  5471. },
  5472. "dist": {
  5473. "type": "zip",
  5474. "url": "https://api.github.com/repos/symfony/css-selector/zipball/02983c144038e697c959e6b06ef6666de759ccbc",
  5475. "reference": "02983c144038e697c959e6b06ef6666de759ccbc",
  5476. "shasum": ""
  5477. },
  5478. "require": {
  5479. "php": ">=5.5.9"
  5480. },
  5481. "type": "library",
  5482. "extra": {
  5483. "branch-alias": {
  5484. "dev-master": "3.2-dev"
  5485. }
  5486. },
  5487. "autoload": {
  5488. "psr-4": {
  5489. "Symfony\\Component\\CssSelector\\": ""
  5490. },
  5491. "exclude-from-classmap": [
  5492. "/Tests/"
  5493. ]
  5494. },
  5495. "notification-url": "https://packagist.org/downloads/",
  5496. "license": [
  5497. "MIT"
  5498. ],
  5499. "authors": [
  5500. {
  5501. "name": "Jean-François Simon",
  5502. "email": "jeanfrancois.simon@sensiolabs.com"
  5503. },
  5504. {
  5505. "name": "Fabien Potencier",
  5506. "email": "fabien@symfony.com"
  5507. },
  5508. {
  5509. "name": "Symfony Community",
  5510. "homepage": "https://symfony.com/contributors"
  5511. }
  5512. ],
  5513. "description": "Symfony CssSelector Component",
  5514. "homepage": "https://symfony.com",
  5515. "time": "2017-05-01T14:55:58+00:00"
  5516. },
  5517. {
  5518. "name": "symfony/dom-crawler",
  5519. "version": "v3.4.3",
  5520. "source": {
  5521. "type": "git",
  5522. "url": "https://github.com/symfony/dom-crawler.git",
  5523. "reference": "09bd97b844b3151fab82f2fdd62db9c464b3910a"
  5524. },
  5525. "dist": {
  5526. "type": "zip",
  5527. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/09bd97b844b3151fab82f2fdd62db9c464b3910a",
  5528. "reference": "09bd97b844b3151fab82f2fdd62db9c464b3910a",
  5529. "shasum": ""
  5530. },
  5531. "require": {
  5532. "php": "^5.5.9|>=7.0.8",
  5533. "symfony/polyfill-mbstring": "~1.0"
  5534. },
  5535. "require-dev": {
  5536. "symfony/css-selector": "~2.8|~3.0|~4.0"
  5537. },
  5538. "suggest": {
  5539. "symfony/css-selector": ""
  5540. },
  5541. "type": "library",
  5542. "extra": {
  5543. "branch-alias": {
  5544. "dev-master": "3.4-dev"
  5545. }
  5546. },
  5547. "autoload": {
  5548. "psr-4": {
  5549. "Symfony\\Component\\DomCrawler\\": ""
  5550. },
  5551. "exclude-from-classmap": [
  5552. "/Tests/"
  5553. ]
  5554. },
  5555. "notification-url": "https://packagist.org/downloads/",
  5556. "license": [
  5557. "MIT"
  5558. ],
  5559. "authors": [
  5560. {
  5561. "name": "Fabien Potencier",
  5562. "email": "fabien@symfony.com"
  5563. },
  5564. {
  5565. "name": "Symfony Community",
  5566. "homepage": "https://symfony.com/contributors"
  5567. }
  5568. ],
  5569. "description": "Symfony DomCrawler Component",
  5570. "homepage": "https://symfony.com",
  5571. "time": "2018-01-03T07:37:34+00:00"
  5572. },
  5573. {
  5574. "name": "symfony/phpunit-bridge",
  5575. "version": "v3.2.14",
  5576. "source": {
  5577. "type": "git",
  5578. "url": "https://github.com/symfony/phpunit-bridge.git",
  5579. "reference": "9e5c470da4b1e3e9cd8e29fecbd7c91eb961d15f"
  5580. },
  5581. "dist": {
  5582. "type": "zip",
  5583. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/9e5c470da4b1e3e9cd8e29fecbd7c91eb961d15f",
  5584. "reference": "9e5c470da4b1e3e9cd8e29fecbd7c91eb961d15f",
  5585. "shasum": ""
  5586. },
  5587. "require": {
  5588. "php": ">=5.3.3"
  5589. },
  5590. "conflict": {
  5591. "phpunit/phpunit": ">=6.0"
  5592. },
  5593. "suggest": {
  5594. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  5595. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  5596. },
  5597. "bin": [
  5598. "bin/simple-phpunit"
  5599. ],
  5600. "type": "symfony-bridge",
  5601. "extra": {
  5602. "branch-alias": {
  5603. "dev-master": "3.2-dev"
  5604. }
  5605. },
  5606. "autoload": {
  5607. "files": [
  5608. "bootstrap.php"
  5609. ],
  5610. "psr-4": {
  5611. "Symfony\\Bridge\\PhpUnit\\": ""
  5612. },
  5613. "exclude-from-classmap": [
  5614. "/Tests/"
  5615. ]
  5616. },
  5617. "notification-url": "https://packagist.org/downloads/",
  5618. "license": [
  5619. "MIT"
  5620. ],
  5621. "authors": [
  5622. {
  5623. "name": "Nicolas Grekas",
  5624. "email": "p@tchwork.com"
  5625. },
  5626. {
  5627. "name": "Symfony Community",
  5628. "homepage": "https://symfony.com/contributors"
  5629. }
  5630. ],
  5631. "description": "Symfony PHPUnit Bridge",
  5632. "homepage": "https://symfony.com",
  5633. "time": "2017-06-02T09:43:35+00:00"
  5634. }
  5635. ],
  5636. "aliases": [],
  5637. "minimum-stability": "dev",
  5638. "stability-flags": {
  5639. "behat/mink": 20
  5640. },
  5641. "prefer-stable": true,
  5642. "prefer-lowest": false,
  5643. "platform": {
  5644. "php": ">=5.5.9"
  5645. },
  5646. "platform-dev": []
  5647. }