-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
80 lines (80 loc) · 2.13 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
72
73
74
75
76
77
78
79
80
{
"name": "bakame/aide",
"description": "Tools and Helper to ease PHP development",
"type": "library",
"keywords": ["helpers"],
"license": "MIT",
"authors": [
{
"name" : "Ignace Nyamagana Butera",
"email" : "[email protected]",
"homepage" : "https://github.com/nyamsprod/",
"role" : "Developer"
}
],
"support": {
"docs": "https://github.com/bakame-php/aide",
"issues": "https://github.com/bakame-php/aide",
"source": "https://github.com/bakame-php/aide"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/nyamsprod"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.53.0",
"phpstan/phpstan": "^1.10.66",
"phpstan/phpstan-strict-rules": "^1.5.3",
"phpstan/phpstan-phpunit": "^1.3.16",
"phpstan/phpstan-deprecation-rules": "^1.1.4",
"phpunit/phpunit": "^10.5.15 || ^11.1.1",
"symfony/var-dumper": "^6.4.6"
},
"autoload": {
"files": [
"src/Base32/functions.php"
],
"psr-4": {
"Bakame\\Aide\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bakame\\Aide\\": "tests/"
}
},
"scripts": {
"benchmark": "phpbench run src --report=default",
"phpcs": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix -vvv --diff --dry-run --allow-risky=yes --ansi",
"phpcs:fix": "php-cs-fixer fix -vvv --allow-risky=yes --ansi",
"phpstan": "phpstan analyse -c phpstan.neon --ansi --memory-limit=192M",
"phpunit": "XDEBUG_MODE=coverage phpunit --coverage-text",
"phpunit:min": "phpunit --no-coverage",
"test": [
"@phpunit",
"@phpstan",
"@phpcs"
]
},
"scripts-descriptions": {
"phpstan": "Runs complete codebase static analysis",
"phpunit": "Runs unit and functional testing",
"phpcs": "Runs coding style testing",
"phpcs:fix": "Fix coding style issues",
"benchmark": "Runs parser benchmark",
"test": "Runs all tests"
},
"extra": {
"branch-alias": {
"dev-develop": "1.x-dev"
}
},
"config": {
"sort-packages": true
}
}