generated from thesis-php/template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 2.2 KB
/
composer.json
File metadata and controls
76 lines (76 loc) · 2.2 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
72
73
74
75
76
{
"name": "thesis/varint",
"description": "Varint and ZigZag integer encoding.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Valentin Udaltsov",
"email": "udaltsov.valentin@gmail.com"
},
{
"name": "kafkiansky",
"email": "vadimzanfir@gmail.com"
},
{
"name": "Thesis Team",
"homepage": "https://github.com/orgs/thesis-php/people"
}
],
"require": {
"php": "^8.4",
"ext-bcmath": "*"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8.3",
"phpunit/phpunit": "^12.4.4",
"symfony/var-dumper": "^6.4.15 || ^7.3.5"
},
"autoload": {
"psr-4": {
"Thesis\\Varint\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Thesis\\Varint\\": "tests/"
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
},
"bump-after-update": "dev",
"platform": {
"php": "8.4"
},
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true,
"target-directory": "tools"
}
},
"scripts": {
"analyse-deps": "tools/composer-dependency-analyser/vendor/bin/composer-dependency-analyser",
"check": [
"@composer fixcs -- --dry-run",
"@composer rector -- --dry-run",
"@phpstan",
"@composer validate",
"@composer normalize --dry-run",
"@analyse-deps",
"@test"
],
"fixcs": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --diff --verbose",
"infection": "tools/infection/vendor/bin/infection --show-mutations",
"normalize": "@composer bin composer-normalize normalize --diff ../../composer.json",
"phpstan": "tools/phpstan/vendor/bin/phpstan analyze",
"pre-command-run": "mkdir -p var",
"psalm": "tools/psalm/vendor/bin/psalm --show-info --no-diff --no-cache",
"rector": "tools/rector/vendor/bin/rector process",
"test": "phpunit"
}
}