-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.69 KB
/
Copy pathcomposer.json
File metadata and controls
59 lines (59 loc) · 1.69 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
{
"$schema": "https://getcomposer.org/schema.json",
"name": "fnet/fnet-github-dispatch-workflow",
"description": "Framework-neutral GitHub App authentication and GitHub Actions workflow dispatch",
"type": "library",
"license": "proprietary",
"keywords": [
"github-app",
"github-actions",
"workflow-dispatch",
"psr-18"
],
"require": {
"php": "^8.3",
"ext-json": "*",
"ext-openssl": "*",
"psr/clock": "^1.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.1 || ^2.0",
"psr/log": "^2.0 || ^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.84",
"nyholm/psr7": "^1.8",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5"
},
"autoload": {
"psr-4": {
"Fnet\\GitHubDispatchWorkflow\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fnet\\GitHubDispatchWorkflow\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"analyse": "phpstan analyse --no-progress --debug --memory-limit=512M",
"check-style": "php-cs-fixer fix --dry-run --diff --using-cache=no --sequential",
"fix-style": "php-cs-fixer fix --using-cache=no --sequential",
"check": [
"@validate-package",
"@test",
"@analyse",
"@check-style"
],
"validate-package": "composer validate --strict"
},
"config": {
"allow-plugins": false,
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}