This repository has been archived by the owner on Apr 24, 2024. It is now read-only.
generated from spawnia/php-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.88 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
{
"name": "mll-lab/microplate",
"description": "PHP package to easily work with microplate data",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Simon Bigelmayr",
"email": "[email protected]"
}
],
"homepage": "https://github.com/mll-lab/microplate",
"support": {
"issues": "https://github.com/mll-lab/microplate/issues",
"source": "https://github.com/mll-lab/microplate"
},
"require": {
"php": "^7.4 || ^8",
"illuminate/support": "^7 || ^8 || ^9 || ^10",
"myclabs/php-enum": "^1.7",
"thecodingmachine/safe": "^1 || ^2"
},
"require-dev": {
"ergebnis/composer-normalize": "^2",
"infection/infection": "~0.25",
"jangregor/phpstan-prophecy": "^1",
"mll-lab/graphql-php-scalars": "^6",
"mll-lab/php-cs-fixer-config": "^5",
"mll-lab/rector-config": "^2",
"nunomaduro/larastan": "^1 || ^2",
"orchestra/testbench": "^5 || ^6 || ^7 || ^8",
"phpstan/extension-installer": "^1",
"phpstan/phpstan": "^1",
"phpstan/phpstan-deprecation-rules": "^1",
"phpstan/phpstan-phpunit": "^1",
"phpstan/phpstan-strict-rules": "^1",
"phpunit/phpunit": "^9",
"symfony/var-dumper": "^5 || ^6",
"thecodingmachine/phpstan-safe-rule": "^1.1"
},
"suggest": {
"mll-lab/graphql-php-scalars": "To use the provided scalar types for GraphQL servers, requires version ^6"
},
"autoload": {
"psr-4": {
"Mll\\Microplate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mll\\Microplate\\Tests\\": "tests/"
},
"files": [
"vendor/symfony/var-dumper/Resources/functions/dump.php"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"ocramius/package-versions": true,
"phpstan/extension-installer": true
},
"preferred-install": "dist",
"sort-packages": true
}
}