-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.78 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.78 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
{
"name": "zing/package-skeleton-php",
"description": "A skeleton repository for PHP Packages",
"keywords": ["php", "package", "skeleton"],
"license": "MIT",
"homepage": "https://github.com/zingimmick/package-skeleton-php",
"support": {
"issues": "https://github.com/zingimmick/package-skeleton-php/issues",
"source": "https://github.com/zingimmick/package-skeleton-php"
},
"authors": [
{
"name": "zingimmick",
"email": "zingimmick@outlook.com",
"homepage": "https://github.com/zingimmick"
}
],
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": "^8.0"
},
"require-dev": {
"phpstan/phpstan": "^1.5.6 || ^2.0.0",
"phpunit/phpunit": "^9.3.3 || ^10.0 || ^11.0 || ^12.0 || ^13.0",
"zing/coding-standard": "^7.0"
},
"autoload": {
"psr-4": {
"Zing\\Skeleton\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Zing\\Skeleton\\Tests\\": "tests"
}
},
"scripts": {
"lint:rector": "@fix:rector --dry-run",
"lint:ecs": "ecs check --ansi",
"lint:phpstan": "phpstan analyse --ansi",
"fix:rector": "rector process --ansi",
"fix:ecs": "@lint:ecs --fix",
"test:phpunit": "phpunit --colors=always",
"lint": [
"@lint:rector",
"@lint:ecs",
"@lint:phpstan"
],
"fix": [
"@fix:rector",
"@fix:ecs"
],
"test": [
"@test:phpunit"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}