-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 2.39 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "sgc-fireball/tinyframework-authentication",
"version": "0.1.0",
"license": "CC-BY-4.0",
"type": "library",
"autoload": {
"psr-4": {
"TinyFramework\\Authentication\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TinyFramework\\Authentication\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.2",
"roave/security-advisories": "dev-latest"
},
"require-dev": {
"cyclonedx/cyclonedx-php-composer": "^4.2",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/php-code-coverage": "^9.2",
"phpunit/php-file-iterator": "^3.0",
"phpunit/php-text-template": "^2.0",
"phpunit/php-timer": "^5.0",
"phpunit/php-token-stream": "^4.0",
"phpunit/phpcov": "^8.2",
"phpunit/phpunit": "^9.6",
"sgc-fireball/tinyframework": "dev-master",
"symplify/easy-coding-standard": "^11.5"
},
"minimum-stability": "dev",
"extra": {
"tinyframework": {
"providers": [
"TinyFramework\\Authentication\\ServiceProvider\\AuthServiceProvider"
]
}
},
"support": {
"issues": "https://github.com/sgc-fireball/tinyframework-authentication/issues"
},
"scripts": {
"ecs": [
"@php vendor/bin/parallel-lint --no-colors --no-progress --show-deprecated src/ tests/ #",
"@php vendor/bin/ecs --fix"
],
"sbom": [
"mkdir -p .reports # ",
"@php $(which composer) CycloneDX:make-sbom --output-format=xml --output-file=.reports/sbom.xml --omit=dev"
],
"analyse": [
"@php $(which composer) dump-autoload #",
"@php vendor/bin/parallel-lint --no-colors --no-progress --show-deprecated src/ tests/ #",
"@php vendor/bin/phpstan analyse"
],
"test": [
"@php $(which composer) dump-autoload #",
"@php vendor/bin/parallel-lint --no-colors --no-progress --show-deprecated src/ tests/ #",
"@php -d xdebug.mode=coverage vendor/bin/phpunit"
]
},
"scripts-descriptions": {
"analyse": "Dump autoload and analyse the source with phpstan!",
"test": "Starts the framework unit tests.",
"ecs": "Running easy coding standard.",
"sbom": "Create a software bill of material report."
},
"config": {
"allow-plugins": {
"cyclonedx/cyclonedx-php-composer": true
}
}
}