forked from tempestphp/tempest-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.57 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
{
"name": "tempest/core",
"description": "Container, Validation, and Discovery for Tempest",
"require": {
"php": "^8.3",
"giggsey/libphonenumber-for-php": "^8.13",
"egulias/email-validator": "^4.0",
"tempest/highlight": "^2.0",
"psr/log": "^3.0",
"symfony/var-dumper": "^7.0",
"monolog/monolog": "^3.6",
"symfony/var-exporter": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.2",
"larapack/dd": "^1.1",
"phpstan/phpstan": "^1.10.0",
"friendsofphp/php-cs-fixer": "^3.21",
"phpat/phpat": "^0.10.14",
"spaze/phpstan-disallowed-calls": "^3.1"
},
"autoload": {
"psr-4": {
"Tempest\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"App\\": "app/",
"Tests\\Tempest\\": "tests/"
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit --display-warnings --display-skipped --display-deprecations --display-errors --display-notices",
"coverage": "vendor/bin/phpunit --coverage-html build/reports/html --coverage-clover build/reports/clover.xml",
"csfixer": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"phpstan": "vendor/bin/phpstan analyse src tests app",
"qa": [
"composer csfixer",
"composer phpstan",
"composer phpunit"
]
},
"license": "MIT",
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}