-
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.83 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.83 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": "empaphy/example",
"description": "A short description of the package; usually one line long.",
"type": "library",
"keywords": ["empaphy", "example"],
"homepage": "https://example.empaphy.org/",
"license": "MIT",
"authors": [{
"name": "Example",
"email": "example@empaphy.org",
"homepage": "https://example.empaphy.org"
}],
"support": {
"issues": "https://github.com/empaphy/example/issues",
"forum": "https://github.com/empaphy/example/discussions",
"wiki": "https://github.com/empaphy/example/wiki",
"source": "https://github.com/empaphy/example",
"docs": "https://example.empaphy.org/",
"rss": "https://github.com/empaphy/example/releases.atom"
},
"require": {
"php": ">=8.1",
"empaphy/polyphill": "^1",
"empaphy/usephul": "^1.10"
},
"require-dev": {
"brianium/paratest": "^7.2",
"empaphy/filharmonic": "^1",
"friendsofphp/php-cs-fixer": "^3",
"phpstan/phpstan": "^2",
"phpstan/phpstan-phpunit": "^2",
"phpunit/phpunit": "^10 <10.5.32 || >=11.2"
},
"autoload": {
"psr-4": {
"empaphy\\example\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"audit": {
"ignore": {
"PKSA-z3gr-8qht-p93v": "'PHPUnit Vulnerable to Unsafe Deserialization in PHPT Code Coverage Handling' – We don't use PHPT"
}
}
},
"scripts": {
"cs": "vendor/bin/php-cs-fixer check",
"stan": "vendor/bin/phpstan --memory-limit=1G",
"test": "vendor/bin/phpunit"
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
}
}