generated from spawnia/php-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 1.87 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
{
"name": "mll-lab/php-utils",
"description": "Shared PHP utility functions of MLL",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Benedikt Franke",
"email": "[email protected]"
}
],
"homepage": "https://github.com/mll-lab/php-utils",
"support": {
"issues": "https://github.com/mll-lab/php-utils/issues",
"source": "https://github.com/mll-lab/php-utils"
},
"require": {
"php": "^7.4 || ^8",
"ext-calendar": "*",
"illuminate/support": "^8.73 || ^9 || ^10 || ^11",
"mll-lab/str_putcsv": "^1",
"nesbot/carbon": "^2.62.1 || ^3",
"ramsey/uuid": "^3 || ^4",
"thecodingmachine/safe": "^1 || ^2"
},
"require-dev": {
"ergebnis/composer-normalize": "^2",
"jangregor/phpstan-prophecy": "^1",
"larastan/larastan": "^1 || ^2",
"mll-lab/graphql-php-scalars": "^6.3",
"mll-lab/php-cs-fixer-config": "^5",
"orchestra/testbench": "^6 || ^7 || ^8 || ^9",
"phpstan/extension-installer": "^1",
"phpstan/phpstan": "^1",
"phpstan/phpstan-deprecation-rules": "^1",
"phpstan/phpstan-phpunit": "^1",
"phpstan/phpstan-strict-rules": "^1",
"phpunit/phpunit": "^9 || ^10 || ^11",
"rector/rector": "^1",
"thecodingmachine/phpstan-safe-rule": "^1.2"
},
"suggest": {
"mll-lab/graphql-php-scalars": "To use the provided scalar types for GraphQL servers, requires version ^6.3"
},
"autoload": {
"psr-4": {
"MLL\\Utils\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MLL\\Utils\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"ocramius/package-versions": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"phpstan": {
"includes": [
"phpstan-extension.neon"
]
}
}
}