-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (45 loc) · 1.06 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
{
"name": "pierresh/simca",
"description": "SVG charts for PHP",
"keywords": ["chart", "charts", "svg"],
"license": "MIT",
"type": "library",
"autoload": {
"psr-4": {
"Pierresh\\Simca\\": "src/"
}
},
"authors": [
{
"name": "Pierre Clavequin"
}
],
"require": {
"php": ">=8.1",
"meyfa/php-svg": "^0.15.0"
},
"require-dev": {
"pestphp/pest": "^2.34",
"pestphp/pest-plugin-watch": "^2.1",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^1.11",
"rector/rector": "^1.1",
"symfony/error-handler": "^7.1"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"refactor": "rector",
"test": "./vendor/bin/pest --watch",
"test-one-run": "./vendor/bin/pest",
"stan": "./vendor/bin/phpstan analyse --ansi ",
"quality": [
"@refactor --dry-run",
"@stan",
"@test-one-run"
]
}
}