-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
52 lines (52 loc) · 1.41 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
{
"name": "jesperbeisner/arbeitszeugnisgenerator",
"description": "Ein Generator für Arbeitszeugnisse :^)",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Jesper Beisner",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"phpoffice/phpword": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.9",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-phpunit": "^1.2",
"phpstan/phpstan-strict-rules": "^1.4",
"phpunit/phpunit": "^9.5",
"symplify/phpstan-rules": "^11.1"
},
"scripts": {
"csfixer": "PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --diff",
"phpunit": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan",
"test": {
"csfixer": "@csfixer",
"phpunit": "@phpunit",
"phpstan": "@phpstan"
}
},
"autoload": {
"psr-4": {
"Jesperbeisner\\Arbeitszeugnisgenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jesperbeisner\\Arbeitszeugnisgenerator\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}