forked from humbug/php-scoper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
83 lines (83 loc) · 2.06 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "humbug/php-scoper",
"description": "Prefixes all PHP namespaces in a file or directory.",
"license": "MIT",
"authors": [
{
"name": "Bernhard Schussek",
"email": "[email protected]"
},
{
"name": "Théo Fidry",
"email": "[email protected]"
},
{
"name": "Pádraic Brady",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"fidry/console": "^0.6.10",
"fidry/filesystem": "^1.1",
"jetbrains/phpstorm-stubs": "^2024.1",
"nikic/php-parser": "^5.0",
"symfony/console": "^6.4 || ^7.0",
"symfony/filesystem": "^6.4 || ^7.0",
"symfony/finder": "^6.4 || ^7.0",
"thecodingmachine/safe": "^2.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.1",
"ergebnis/composer-normalize": "^2.28",
"fidry/makefile": "^1.0",
"humbug/box": "^4.6.2",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^10.0",
"symfony/yaml": "^6.4 || ^7.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Humbug\\PhpScoper\\": "src/"
},
"classmap": [
"vendor-hotfix/"
],
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Humbug\\PhpScoper\\": "tests/"
},
"files": [
"tests/functions.php"
]
},
"bin": [
"bin/php-scoper"
],
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"ergebnis/composer-normalize": true
},
"bin-dir": "bin",
"platform": {
"php": "8.2.0"
},
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": false
},
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}