-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 1.9 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 1.9 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "coisa/composer-skeleton",
"description": "CoiSA Component Description",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Felipe Sayão Lobato Abreu",
"email": "github@mentor.dev.br"
}
],
"support": {
"email": "github@mentor.dev.br",
"issues": "https://github.com/coisa/composer-skeleton/issues",
"source": "https://github.com/coisa/composer-skeleton"
},
"require": {
"php": "^7.4 || ^8.0"
},
"require-dev": {
"coisa/php-cs-fixer": "^2.1",
"jangregor/phpstan-prophecy": "^1.0",
"php-parallel-lint/php-console-highlighter": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-phpunit": "^1.1",
"phpunit/phpunit": "^9.5",
"spatie/phpunit-watcher": "^1.23",
"squizlabs/php_codesniffer": "^3.7"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"CoiSA\\Component\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CoiSA\\Component\\": "tests/"
}
},
"config": {
"platform": {
"php": "7.4"
},
"prefer-stable": true,
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"scripts": {
"analyse": "phpstan analyse",
"check": [
"@lint",
"@test",
"@sniff",
"@cs-check",
"@analyse"
],
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"lint": "parallel-lint --exclude vendor .",
"sniff": "phpcs",
"test": "phpunit --color=always --testdox",
"test-watch": "phpunit-watcher watch"
}
}