-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.48 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
52
53
{
"name": "phayne-io/composer-template",
"description": "Composer package template",
"minimum-stability": "stable",
"license": "proprietary",
"authors": [
{
"name": "Julien Guittard",
"email": "julien@phayne.com"
}
],
"support": {
"source": "https://github.com/phayne-io/composer-template",
"issues": "https://github.com/phayne-io/composer-template/issues",
"rss": "https://github.com/phayne-io/composer-template/releases.atom",
"wiki": "https://github.com/phayne-io/composer-template/wiki"
},
"require": {
"php": "^8.2",
"phayne-io/php-exception": "^1.0@dev"
},
"require-dev": {
"dg/bypass-finals": "^1.4",
"malukenho/docheader": "^1.0",
"php-coveralls/php-coveralls": "^v2.5",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.7",
"vimeo/psalm": "^4.30"
},
"autoload": {
"psr-4": {
"Phayne\\Template\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhayneTest\\Template\\": "test/"
}
},
"scripts": {
"test-html": "XDEBUG_MODE=coverage phpunit --colors=always -vvv --coverage-html build/html",
"test-clover": "XDEBUG_MODE=coverage phpunit --colors=always -vvv --coverage-clover build/logs/clover.xml",
"static": "./vendor/bin/psalm --config=psalm.xml",
"style": "./vendor/bin/phpcs",
"test": ["@test-html", "@static", "@style"],
"post-create-project-cmd": "php setup.php"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}