-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.8 KB
/
Copy pathcomposer.json
File metadata and controls
61 lines (61 loc) · 1.8 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
{
"name": "switon/testing",
"description": "Shared test container, TestCase base, and package-local test runner for Switon Framework",
"type": "library",
"keywords": [
"switon",
"testing",
"phpunit",
"bootstrap"
],
"homepage": "https://github.com/switon-php/testing",
"license": "MIT",
"authors": [
{
"name": "switon",
"email": "[email protected]"
}
],
"support": {
"source": "https://github.com/switon-php/testing",
"issues": "https://github.com/switon-php/testing/issues",
"docs": "https://docs.switon.dev/latest/testing"
},
"require": {
"php": ">=8.3",
"psr/container": "^2.0",
"psr/event-dispatcher": "^1.0",
"psr/log": "^2.0",
"psr/simple-cache": "^3.0",
"switon/composer-extra": "^1.0",
"switon/core": "^1.0",
"switon/di": "^1.0",
"switon/event": "^1.0",
"phpunit/phpunit": "^12.0"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"phpstan/extension-installer": "^1.4"
},
"config": {
"allow-plugins": {
"switon/composer-extra": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"Switon\\Testing\\": "src/"
}
},
"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"
}
}
}