forked from naneau/filegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.4 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
{
"name": "angrybytes/filegen",
"description": "A PHP File and Directory Generating Tool",
"license": "MIT",
"authors": [
{
"name": "Maurice Fonk",
"email": "[email protected]"
},
{
"name": "Angry Bytes BV",
"email": "[email protected]",
"homepage": "https://angrybytes.com/"
}
],
"support": {
"email": "[email protected]"
},
"autoload": {
"psr-4": {
"Naneau\\FileGen\\": "src/Naneau/FileGen",
"Naneau\\FileGen\\Test\\": "tests/Naneau/FileGen/Test"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"phpcheck": [
"./vendor/bin/phpstan analyse -l max --memory-limit=1G src/",
"./vendor/bin/phpcs -p --standard=PSR2 --extensions=php src/"
],
"phpcbf": [
"./vendor/bin/phpcbf -p --standard=PSR2 --extensions=php src/"
],
"phpunit": [
"./vendor/bin/phpunit"
]
},
"minimum-stability": "stable",
"require": {
"php": "8.2 - 8.4",
"symfony/filesystem": "6.4 - 7"
},
"require-dev": {
"phpstan/phpstan": "2.0.3",
"phpunit/phpunit": "11.5.1",
"squizlabs/php_codesniffer": "3.11.2",
"friendsofphp/php-cs-fixer": "^3.65",
"symfony/console": "6.4 - 7",
"twig/twig": "^3.8"
},
"suggest": {
"twig/twig": "Allows for templated files",
"symfony/console": "Add console command generation with parameters"
}
}