-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
42 lines (42 loc) · 1.07 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
{
"require": {
"php": "^8.1",
"ext-dom": "*",
"ext-zlib": "*"
},
"require-dev": {
"bugo/smf-compat": "^0.2",
"pestphp/pest": "^2.36",
"phing/phing": "^3.0",
"rector/rector": "^2.0",
"symfony/http-foundation": "^6.4"
},
"autoload": {
"psr-4": {
"Bugo\\Optimus\\": "src\\Sources\\Optimus"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "alpha",
"scripts": {
"check": "vendor/bin/rector process --dry-run --clear-cache",
"tests": "vendor/bin/pest --colors=always",
"tests-coverage": "vendor/bin/pest --colors=always --coverage --min=90",
"tests-coverage-clover": "vendor/bin/pest --colors=always --min=90 --coverage-clover coverage.xml",
"tests-coverage-html": "vendor/bin/pest --colors=always --min=90 --coverage-html coverage",
"post-update-cmd": "cd src/Sources/Optimus && composer update --no-dev -o",
"build": [
"composer update",
"vendor/bin/phing"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}