Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
{
2
	"name": "michelf/php-markdown",
3
	"type": "library",
4
	"description": "PHP Markdown",
5
	"homepage": "https://michelf.ca/projects/php-markdown/",
6
	"keywords": ["markdown"],
7
	"license": "BSD-3-Clause",
8
	"authors": [
9
		{
10
			"name": "Michel Fortin",
11
			"email": "michel.fortin@michelf.ca",
12
			"homepage": "https://michelf.ca/",
13
			"role": "Developer"
14
		},
15
		{
16
			"name": "John Gruber",
17
			"homepage": "https://daringfireball.net/"
18
		}
19
	],
20
	"require": {
21
		"php": ">=7.4"
22
	},
23
	"autoload": {
24
 		"psr-4": { "Michelf\\": "Michelf/" }
25
	},
26
	"require-dev": {
27
		"friendsofphp/php-cs-fixer": "^3.0",
28
		"phpunit/phpunit": "^9.5",
29
		"phpstan/phpstan": ">=1.0",
30
		"phpstan/phpstan-phpunit": ">=1.0"
31
	},
32
 
33
	"scripts": {
34
		"tests": "vendor/bin/phpunit test/",
35
		"phpstan": [
36
			"vendor/bin/phpstan analyse Michelf/ --level=5",
37
			"vendor/bin/phpstan analyse -c test/phpstan.neon test/ --level=5"
38
		],
39
		"codestyle": "vendor/bin/php-cs-fixer fix Michelf --dry-run --verbose --show-progress=none",
40
		"codestyle-fix": "vendor/bin/php-cs-fixer fix Michelf"
41
	},
42
 
43
	"archive": {
44
		"exclude": [
45
			"/.github/",
46
			"/test/",
47
			"/.editorconfig",
48
			"/.gitignore",
49
			"/.scrutinizer.yml",
50
			"/.travis.yml",
51
			"/phpunit.xml.dist"
52
		]
53
	}
54
}