-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.67 KB
/
Copy pathcomposer.json
File metadata and controls
58 lines (58 loc) · 1.67 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
{
"name": "switon/invocation",
"description": "Method-level guard and interceptor contracts for managed invocations for Switon Framework",
"type": "library",
"keywords": [
"switon",
"invocation",
"interceptor",
"attribute"
],
"homepage": "https://github.com/switon-php/invocation",
"license": "MIT",
"authors": [
{
"name": "switon",
"email": "admin@switon.dev"
}
],
"support": {
"source": "https://github.com/switon-php/invocation",
"issues": "https://github.com/switon-php/invocation/issues",
"docs": "https://docs.switon.dev/latest/invocation"
},
"require": {
"php": ">=8.3"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"switon/testing": "^1.0",
"phpstan/extension-installer": "^1.4"
},
"config": {
"allow-plugins": {
"switon/composer-extra": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"Switon\\Invocation\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Switon\\Invocation\\Tests\\": "tests/"
}
},
"scripts": {
"phpstan": "@php vendor/bin/phpstan analyse",
"test:unit": "@php vendor/bin/phpunit --configuration tests/phpunit.xml.dist --testsuite=unit --display-deprecations --display-phpunit-notices",
"test": "@php vendor/bin/phpunit --configuration tests/phpunit.xml.dist --testsuite=all --display-deprecations --display-phpunit-notices"
},
"extra": {
"branch-alias": {
"dev-dev": "1.0.x-dev"
}
}
}