-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 2.04 KB
/
composer.json
File metadata and controls
74 lines (74 loc) · 2.04 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"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": "suki@missallsunday.com",
"homepage": "https://missallsunday.com",
"role": "Developer"
}
],
"config": {
"vendor-dir": "breezeVendor",
"allow-plugins": {
"php-http/discovery": false
}
},
"require": {
"php": ">=8.3",
"league/container": "^5.0",
"ext-json": "*",
"league/event": "^3.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "^3.50",
"phpstan/phpstan": "^1.10.0",
"phpunit/phpunit": "^12.2",
"rector/rector": "^1.2",
"ext-pdo": "*"
},
"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",
"ui:test": "npm run test:run",
"serve": "bin/server",
"db:setup": "php tests/setup-test-database.php",
"test": [
"@lint:check",
"@phpunit",
"@phpstan"
],
"test:db": [
"@db:setup",
"@test"
],
"ltest": [
"@lint",
"@test"
]
}
}