-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (57 loc) · 1.59 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
{
"name": "tomkyle/repository-persistence",
"description": "Scaffold for Repository-and-Persistence design pattern",
"license": "proprietary",
"autoload": {
"psr-4": {
"tomkyle\\RepositoryPersistence\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests"
}
},
"require": {
"php": "^8.2",
"nette/utils": "^4.0.4"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"phpspec/prophecy-phpunit": "^2.0.1",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.11",
"roave/security-advisories": "dev-latest",
"symfony/yaml": "^7.0",
"spatie/temporary-directory": "^2.2",
"spatie/yaml-front-matter": "^2.0",
"mnapoli/silly": "^1.9",
"symfony/finder": "^7.0",
"rector/rector": "^1.0",
"tomkyle/find-run-test": "^1.0"
},
"scripts": {
"rector": [ "@rector:dry" ],
"rector:dry": "rector process --dry-run",
"rector:apply": "rector process",
"phpcs": [ "@phpcs:dry" ],
"phpcs:dry": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --verbose --diff --dry-run",
"phpcs:apply": [
"PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --verbose --diff",
"@test:unit"
],
"test": [
"@test:unit",
"@test:integration"
],
"test:unit": [
"phpunit --testsuite unit"
],
"test:integration": [
"phpunit --testsuite integration"
]
}
}