-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.37 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
{
"name": "verfriemelt/wrapped",
"description": "for educational purposes only",
"license": "MIT",
"bin": ["bin/console"],
"config": {
"allow-plugins": {
"infection/extension-installer": false
},
"sort-packages": true
},
"require": {
"php": "^8.3",
"ext-curl": "*",
"ext-pdo": "*",
"psr/clock": "^1.0",
"psr/http-client": "^1.0.3",
"psr/http-factory": "^1.1",
"psr/http-message": "^2.0",
"verfriemelt/pp": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^1.12.11",
"phpstan/phpstan-strict-rules": "^1.6.1",
"phpstan/phpstan-phpunit": "^1.4.1",
"phpunit/phpunit": "^10.5.38",
"rector/rector": "^1.2.10",
"friendsofphp/php-cs-fixer": "^3.64.0",
"tomasvotruba/type-coverage": "^1.0",
"tomasvotruba/cognitive-complexity": "^0.2.3",
"infection/infection": "^0.29.8",
"php-http/psr7-integration-tests": "^1.4"
},
"provide": {
"psr/clock-implementation": "1.0",
"psr/http-factory-implementation": "1.0",
"psr/http-message-implementation": "1.0"
},
"autoload": {
"psr-4": {
"verfriemelt\\wrapped\\_\\": "_"
}
},
"autoload-dev": {
"psr-4": {
"verfriemelt\\wrapped\\Tests\\": "tests"
}
}
}