-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.14 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
{
"name": "benjaminmal/library-template",
"description": "Benjaminmal library template",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Benjamin Malgras",
"role": "developer"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {
"benjaminmal/coding-standard": "^1.1.1",
"phpstan/phpstan": "^1.10.6",
"phpstan/extension-installer": "^1.2",
"symfony/var-dumper": "^5.4 || ^6.1.6",
"phpunit/phpunit": "^9.6.5",
"phpstan/phpstan-phpunit": "^1.3.10",
"php-parallel-lint/php-var-dump-check": "^0.5.0"
},
"autoload": {
"psr-4": {
"Benjaminmal\\Library\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Benjaminmal\\Library\\Tests\\": "tests/"
}
},
"scripts": {
"post-create-project-cmd": [
"mv .gitattributes.disabled .gitattributes"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"symfony/flex": true
}
}
}