-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
101 lines (101 loc) · 2.39 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "mapado/rest-client-sdk",
"description": "Rest Client SDK for hydra API",
"autoload": {
"psr-4": {
"Mapado\\RestClientSdk\\PHPStan\\": "phpstan-extension/",
"Mapado\\RestClientSdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mapado\\RestClientSdk\\Tests\\": "Tests/"
}
},
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^6.2.2 || ^7.5.0",
"friendsofphp/proxy-manager-lts": "^1.0",
"symfony/http-foundation": "^4.4 || ^5.0 || ^6.0",
"symfony/property-access": "^4.4 || ^5.0 || ^6.0",
"psr/cache": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"symfony/cache": "^4.0 || ^5.0 || ^6.0",
"phpunit/phpunit": "^10.0",
"mapado/php-cs-fixer-config": "^3.2",
"g1a/composer-test-scenarios": "^3.0",
"giggsey/libphonenumber-for-php": "^8.0",
"friendsofphp/php-cs-fixer": "^3.0.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/extension-installer": "^1.3"
},
"suggest": {
"giggsey/libphonenumber-for-php": "^1.1 to manage integration with phone number bundle"
},
"scripts": {
"test": [
"vendor/bin/phpstan analyze",
"vendor/bin/phpunit"
],
"post-install-cmd": [
"yarn install"
],
"post-update-cmd": [
"yarn install"
]
},
"license": "MIT",
"authors": [
{
"name": "Julien Deniau",
"email": "[email protected]"
},
{
"name": "Dimitri Allegoet",
"email": "[email protected]"
},
{
"name": "Julien RAVIA",
"email": "[email protected]",
"role": "Maintainer"
}
],
"extra": {
"scenarios": {
"symfony6": {
"conflict": {
"symfony/http-foundation": ">=7.0.0",
"symfony/property-access": ">=7.0.0"
}
},
"symfony5": {
"conflict": {
"symfony/http-foundation": ">=6.0.0",
"symfony/property-access": ">=6.0.0"
}
},
"symfony4": {
"conflict": {
"symfony/http-foundation": ">=5.0.0",
"symfony/property-access": ">=5.0.0"
}
}
},
"scenario-options": {
"dependency-licenses": false
},
"phpstan": {
"includes": [
"phpstan-extension/extension.neon"
]
}
},
"config": {
"allow-plugins": {
"g1a/composer-test-scenarios": true,
"phpstan/extension-installer": true
}
}
}