generated from laminas/repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
50 lines (50 loc) · 1.55 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
{
"name": "laminas/laminas-servicemanager-migration",
"description": "Migrate your code to laminas-servicemanager 4.x compatibility utilizing Rector rules.",
"license": "BSD-3-Clause",
"keywords": [
"laminas",
"servicemanager",
"migration"
],
"support": {
"docs": "https://docs.laminas.dev/laminas-servicemanager-migration/",
"issues": "https://github.com/laminas/laminas-servicemanager-migration/issues",
"source": "https://github.com/laminas/laminas-servicemanager-migration",
"rss": "https://github.com/laminas/laminas-servicemanager-migration/releases.atom",
"forum": "https://discourse.laminas.dev/"
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 ",
"rector/rector": "1.2.10"
},
"require-dev": {
"laminas/laminas-servicemanager": "^4.0",
"phpunit/phpunit": "^10.5.38",
"squizlabs/php_codesniffer": "^3.7.1"
},
"autoload": {
"psr-4": {
"Laminas\\ServiceManager\\Migration\\": "src//"
}
},
"autoload-dev": {
"psr-4": {
"LaminasTest\\ServiceManager\\Migration\\": "test/"
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.1.99"
}
},
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
},
"minimum-stability": "dev",
"prefer-stable": true
}