-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
93 lines (93 loc) · 2.31 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "ben-challis/sql-migrations",
"description": "SQL Database migrations driven off Amp",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Ben Challis"
}
],
"autoload": {
"psr-4": {
"BenChallis\\SqlMigrations\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Fixtures\\BenChallis\\SqlMigrations\\": "tests/fixtures/",
"Tests\\Helper\\BenChallis\\SqlMigrations\\": "tests/helper/",
"Tests\\Integration\\BenChallis\\SqlMigrations\\": "tests/integration/",
"Tests\\Spec\\BenChallis\\SqlMigrations\\": "tests/spec/",
"Tests\\Unit\\BenChallis\\SqlMigrations\\": "tests/unit/"
}
},
"minimum-stability": "beta",
"require": {
"php": ">=8.2,<8.3",
"ext-json": "*",
"ext-pcntl": "*",
"amphp/byte-stream": "^2.0",
"amphp/file": "^3.0",
"amphp/mysql": "^v3.0.0-beta.4",
"amphp/parallel": "^2.2",
"amphp/socket": "^2.2",
"amphp/sync": "^2.0",
"azjezz/psl": "^2.3",
"psr/clock-implementation": "*",
"psr/log": "^3",
"ramsey/uuid": "^4.7",
"symfony/finder": "^6.2"
},
"require-dev": {
"amphp/phpunit-util": "^3.0",
"ergebnis/phpstan-rules": "^2.1",
"lendable/clock": "^2.3",
"php-cs-fixer/shim": "^v3.47.1",
"php-standard-library/phpstan-extension": "^1.0",
"phpstan/phpstan": "^1.10.56",
"phpstan/phpstan-deprecation-rules": "^1.1.4",
"phpstan/phpstan-phpunit": "^1.3.15",
"phpstan/phpstan-strict-rules": "^1.5.2",
"phpunit/phpunit": "^9.6.15",
"psr/container": "^2.0",
"rector/rector": "^0.19.1"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.2.9"
}
},
"scripts": {
"code-style:fix": [
"PHP_CS_FIXER_FUTURE_MODE=1 php-cs-fixer fix --diff --ansi"
],
"code-style:check": [
"PHP_CS_FIXER_FUTURE_MODE=1 php-cs-fixer fix --dry-run --diff --ansi"
],
"phpstan": [
"phpstan analyse --memory-limit=-1 --ansi"
],
"rector": [
"rector --dry-run"
],
"rector:fix": [
"rector"
],
"static-analysis": [
"@composer validate",
"@phpstan",
"@rector"
],
"phpunit:unit": [
"phpunit --colors --testsuite=unit --do-not-cache-result"
],
"tests": [
"@tests:unit"
],
"tests:unit": [
"@phpunit:unit"
]
}
}