forked from textile/php-textile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.31 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
{
"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": {
"irc": "irc://irc.freenode.net/textile",
"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": {
"phpunit/phpunit": "5.7.*",
"symfony/yaml": "2.4.*",
"squizlabs/php_codesniffer": "3.*",
"php-coveralls/php-coveralls": "2.1.*"
},
"extra": {
"branch-alias": {
"dev-master": "3.7-dev"
}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"cs": "./vendor/bin/phpcs",
"bump": "@php ./scripts/release.php",
"bump-dev": "@php ./scripts/release.php --dev"
}
}