-
Notifications
You must be signed in to change notification settings - Fork 635
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 935 Bytes
/
Copy pathcomposer.json
File metadata and controls
40 lines (40 loc) · 935 Bytes
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
{
"name": "php/web-php",
"description": "The www.php.net site.",
"license": "proprietary",
"type": "project",
"homepage": "https://www.php.net/",
"support": {
"source": "https://github.com/php/web-php"
},
"require": {
"php": "~8.4.0"
},
"require-dev": {
"ext-curl": "*",
"friendsofphp/php-cs-fixer": "^3.95.7",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.2",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^11.5.50"
},
"autoload": {
"psr-4": {
"phpweb\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"phpweb\\Test\\": "tests/"
}
},
"config": {
"platform": {
"php": "8.4.0"
},
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}