-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
33 lines (33 loc) · 947 Bytes
/
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
{
"name": "murtukov/php-code-generator",
"description": "A library to generate php code",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Timur Murtukov",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Murtukov\\PHPCodeGenerator\\": "src/"
}
},
"require-dev": {
"phpstan/phpstan": "^1.12.4",
"phpunit/phpunit": "^10",
"friendsofphp/php-cs-fixer": "^3.64"
},
"scripts": {
"test": "./vendor/bin/phpunit tests",
"static-analysis": "./vendor/bin/phpstan analyse src tests",
"fix-cs": "./vendor/bin/php-cs-fixer fix --diff -v --allow-risky=yes --ansi",
"check-cs": "./vendor/bin/php-cs-fixer fix --dry-run --diff -v --allow-risky=yes --ansi"
}
}