-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·53 lines (46 loc) · 1.26 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": "tomkyle/boilerplate-php",
"description": "PHP Package boilerplate",
"authors": [{
"name": "Carsten Witt",
"email": "tomkyle@posteo.de",
"role": "Developer"
}],
"license": "MIT",
"autoload": {
"psr-4": {
"Vendor\\Package\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/src"
}
},
"require": {
"php": "^8.3",
"ext-json": "*",
"psr/log": "^1.1|^2.0|^3.0",
"psr/cache": "^1.0|^2.0|^3.0",
"psr/http-factory": "^1.0",
"psr/http-client": "^1.0"
},
"require-dev": {
"nyholm/psr7": "^1.3",
"guzzlehttp/guzzle": "^7.0",
"symfony/cache": "^5.0|^6.0",
"phpunit/phpunit": "^11.0",
"friendsofphp/php-cs-fixer": "^3.63",
"spatie/phpunit-watcher": "^1.0",
"phpstan/phpstan": "^1.12",
"laminas/laminas-log": "^2.15",
"tomkyle/find-run-test": "^1.0",
"rector/rector": "^1.2"
},
"suggest": {
"monolog/monolog": "PSR-3 Logger of choice",
"nyholm/psr7": "PSR-17 factories",
"guzzlehttp/guzzle": "PSR-18 client (as of v7)",
"symfony/cache": "PSR-6 and PSR-16 Cache engines"
}
}