-
Notifications
You must be signed in to change notification settings - Fork 44
/
composer.json
51 lines (51 loc) · 1.54 KB
/
composer.json
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
43
44
45
46
47
48
49
50
51
{
"name": "netcarver/textile",
"description": "Textile markup language parser",
"license": "BSD-3-Clause",
"homepage": "https://github.com/textile/php-textile",
"keywords": ["php-textile", "textile", "parser", "markup", "language", "html", "format", "plaintext", "document"],
"support": {
"wiki": "https://github.com/textile/php-textile/wiki",
"issues": "https://github.com/textile/php-textile/issues",
"source": "https://github.com/textile/php-textile"
},
"autoload": {
"psr-4": {
"Netcarver\\Textile\\": "src/Netcarver/Textile/"
}
},
"autoload-dev": {
"psr-4": {
"Netcarver\\Textile\\Test\\": "test/Netcarver/Textile/Test/"
}
},
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpstan/phpstan": "1.12.11",
"phpunit/phpunit": "^9.5.20",
"squizlabs/php_codesniffer": "3.*",
"symfony/yaml": "^5.4.40",
"psy/psysh": "^0.12.4"
},
"extra": {
"branch-alias": {
"dev-master": "4.1-dev"
}
},
"scripts": {
"test": [
"@composer lint",
"@composer test:static",
"@composer test:unit"
],
"project:bump": "@php ./scripts/release.php",
"project:bump-dev": "@php ./scripts/release.php --dev",
"lint": "phpcs",
"lint-fix": "phpcbf",
"repl": "psysh",
"test:static": "phpstan analyse --level 8 src",
"test:unit": "XDEBUG_MODE=coverage phpunit"
}
}