Skip to content

Commit 29be5c7

Browse files
Remove some unwanted deps
1 parent 934d54c commit 29be5c7

35 files changed

+182
-6295
lines changed

.gitattributes

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,4 @@
22
/tests export-ignore
33
.gitattributes export-ignore
44
.gitignore export-ignore
5-
.scrutinizer.yml export-ignore
6-
.travis.coverage.sh export-ignore
7-
.travis.install.sh export-ignore
8-
.travis.yml export-ignore
9-
CONTRIBUTING.md export-ignore
10-
infection.json.dist export-ignore
11-
phpbench.json export-ignore
12-
phpcs.xml.dist export-ignore
13-
phpdox.xml.dist export-ignore
14-
phpmd.xml.dist export-ignore
155
phpunit.xml.dist export-ignore
16-
proxy-manager.png export-ignore
17-
psalm.xml export-ignore

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
vendor
22
composer.phar
3+
composer.lock
34
phpunit.xml
45
phpmd.xml
56
phpdox.xml

composer.json

Lines changed: 9 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -16,36 +16,24 @@
1616
"name": "Marco Pivetta",
1717
"email": "[email protected]",
1818
"homepage": "http://ocramius.github.io/"
19+
},
20+
{
21+
"name": "Nicolas Grekas",
22+
"email": "[email protected]"
1923
}
2024
],
2125
"require": {
22-
"php": "~7.4.1",
26+
"php": ">=7.1",
2327
"laminas/laminas-code": "^3.4.1",
24-
"composer-runtime-api": "^2.0.0",
25-
"webimpress/safe-writer": "^2.0.1"
28+
"symfony/filesystem": "^4.4.17|^5.0"
2629
},
2730
"conflict": {
2831
"zendframework/zend-stdlib": "<3.2.1",
29-
"laminas/laminas-stdlib": "<3.2.1",
30-
"doctrine/annotations": "<1.6.1"
32+
"laminas/laminas-stdlib": "<3.2.1"
3133
},
3234
"require-dev": {
3335
"ext-phar": "*",
34-
"phpunit/phpunit": "^9.4.1",
35-
"squizlabs/php_codesniffer": "^3.5.5",
36-
"slevomat/coding-standard": "^6.3.10",
37-
"doctrine/coding-standard": "^8.1.0",
38-
"nikic/php-parser": "^4.6.0",
39-
"phpbench/phpbench": "^0.17.1",
40-
"infection/infection": "^0.16.4",
41-
"vimeo/psalm": "^3.12.2",
42-
"codelicia/xulieta": "^0.1.2"
43-
},
44-
"suggest": {
45-
"ocramius/generated-hydrator": "To have very fast object to array to object conversion for ghost objects",
46-
"laminas/laminas-xmlrpc": "To have the XmlRpc adapter (Remote Object feature)",
47-
"laminas/laminas-json": "To have the JsonRpc adapter (Remote Object feature)",
48-
"laminas/laminas-soap": "To have the Soap adapter (Remote Object feature)"
36+
"symfony/phpunit-bridge": "^5.2"
4937
},
5038
"autoload": {
5139
"psr-4": {
@@ -54,15 +42,10 @@
5442
},
5543
"autoload-dev": {
5644
"psr-4": {
57-
"ProxyManagerBench\\": "tests/ProxyManagerBench",
5845
"ProxyManagerTest\\": "tests/ProxyManagerTest",
5946
"ProxyManagerTestAsset\\": "tests/ProxyManagerTestAsset",
6047
"Laminas\\Server\\": "tests/Stubbed/Laminas/Server"
6148
}
6249
},
63-
"extra": {
64-
"branch-alias": {
65-
"dev-master": "3.0.x-dev"
66-
}
67-
}
50+
"minimum-stability": "dev"
6851
}

0 commit comments

Comments
 (0)