-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.73 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.73 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
{
"name": "webproject-xyz/php-package-template",
"description": "php-package-description",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Benjamin Fahl",
"email": "ben+github@webproject.xyz",
"role": "developer"
}
],
"homepage": "https://www.webproject.xyz",
"require": {
"php": "~8.4.0 || ~8.5.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"codeception/codeception": "^5.3.5",
"codeception/module-asserts": "^3.3.0",
"friendsofphp/php-cs-fixer": "^3.95.1",
"phpro/grumphp": "^2.20.0",
"phpstan/phpstan": "^2.1.51",
"webproject-xyz/codeception-module-ai-reporter": "^1.1.1"
},
"autoload": {
"psr-4": {
"WebProject\\PhpPackageTemplate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WebProject\\PhpPackageTemplate\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true
},
"optimize-autoloader": true,
"platform": {
"php": "8.4.0"
},
"sort-packages": true
},
"scripts": {
"cs:check": "XDEBUG_MODE=off php-cs-fixer fix --allow-risky=yes --dry-run --diff --show-progress=dots",
"cs:fix": "XDEBUG_MODE=off php-cs-fixer fix --show-progress=none --allow-risky=yes",
"stan": "XDEBUG_MODE=off phpstan analyse --no-progress --no-ansi --memory-limit=-1",
"test": "XDEBUG_MODE=off codecept run --report",
"test:coverage": "XDEBUG_MODE=coverage codecept run --coverage --coverage-xml=coverage.xml --xml --report",
"test:build": "XDEBUG_MODE=off codecept build",
"qa": [
"@test:build",
"@cs:fix",
"@test",
"@stan"
]
}
}