Blame view

vendor/cebe/markdown/composer.json 852 Bytes
70f4f18b   Administrator   first_commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
  {
  	"name": "cebe/markdown",
  	"description": "A super fast, highly extensible markdown parser for PHP",
  	"keywords": ["markdown", "gfm", "markdown-extra", "fast", "extensible"],
  	"homepage": "https://github.com/cebe/markdown#readme",
  	"type": "library",
  	"license": "MIT",
  	"authors": [
  		{
  			"name": "Carsten Brandt",
  			"email": "mail@cebe.cc",
  			"homepage": "http://cebe.cc/",
  			"role": "Creator"
  		}
  	],
  	"support": {
  		"issues": "https://github.com/cebe/markdown/issues",
  		"source": "https://github.com/cebe/markdown"
  	},
  	"require": {
  		"php": ">=5.4.0",
  		"lib-pcre": "*"
  	},
  	"require-dev": {
  		"phpunit/phpunit": "4.1.*",
  		"facebook/xhprof": "*@dev",
  		"cebe/indent": "*"
  	},
  	"autoload": {
  		"psr-4": {
  			"cebe\\markdown\\": ""
  		}
  	},
  	"bin": [
  		"bin/markdown"
  	],
  	"extra": {
  		"branch-alias": {
  			"dev-master": "1.1.x-dev"
  		}
  	}
  }