-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
62 lines (62 loc) · 1.75 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
{
"name": "suki/breeze",
"type": "smf-module",
"description": "SMF modification for posting status and comments on user's walls.",
"keywords": ["SMF","modifications", "Social"],
"homepage": "https://github.com/MissAllSunday/Breeze",
"license": "MPL-2.0",
"authors": [
{
"name": "Michel Mendiola",
"email": "[email protected]",
"homepage": "https://missallsunday.com",
"role": "Developer"
}
],
"config": {
"vendor-dir": "breezeVendor",
"allow-plugins": {
"php-http/discovery": false
}
},
"require": {
"php": ">=8.2.0",
"league/container": "^4.2",
"ext-json": "*"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "^3.50",
"phpstan/phpstan": "^1.10.0",
"phpunit/phpunit": "^11.1",
"rector/rector": "^1.2"
},
"autoload": {
"psr-4": {
"Breeze\\": "Sources/Breeze/"
}
},
"autoload-dev": {
"psr-4": {
"Breeze\\": "tests/"
}
},
"scripts": {
"lint": [
"php-cs-fixer fix --verbose --show-progress=dots"
],
"lint:check": [
"php-cs-fixer fix --dry-run --verbose --show-progress=dots"
],
"coverage": "XDEBUG_MODE=coverage phpunit -c phpunit.xml.dist --coverage-html=tests/log/coverage/",
"phpunit": "phpunit -c phpunit.xml.dist",
"phpstan": "phpstan analyze --memory-limit=1G -c phpstan.neon",
"rector": "breezeVendor/bin/rector process Sources",
"serve": "bin/server",
"test": [
"@lint:check",
"@phpunit",
"@phpstan"
]
}
}