generated from ergebnis/php-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.63 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
{
"name": "luracast/scope",
"description": "Standalone scope manager from Restler",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Arul Kumaran",
"email": "arul@luracast.com"
}
],
"homepage": "https://github.com/Luracast/Scope",
"support": {
"issues": "https://github.com/Luracast/Scope/issues",
"source": "https://github.com/Luracast/Scope"
},
"require": {
"php": "^8.1"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.28.0",
"ergebnis/data-provider": "^1.2.0",
"ergebnis/license": "^1.2.0",
"ergebnis/php-cs-fixer-config": "^4.4.0",
"ergebnis/phpstan-rules": "^1.0.0",
"fakerphp/faker": "^1.19.0",
"infection/infection": "~0.26.6",
"phpstan/extension-installer": "^1.1.0",
"phpstan/phpstan": "^1.7.14",
"phpstan/phpstan-deprecation-rules": "^1.0.0",
"phpstan/phpstan-phpunit": "^1.1.1",
"phpstan/phpstan-strict-rules": "^1.2.3",
"phpunit/phpunit": "^9.5.20",
"psalm/plugin-phpunit": "~0.17.0",
"vimeo/psalm": "^4.23"
},
"autoload": {
"psr-4": {
"Luracast\\Scope\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Luracast\\Scope\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"platform": {
"php": "8.1.5"
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"composer-normalize": {
"indent-size": 2,
"indent-style": "space"
}
}
}