-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
60 lines (60 loc) · 1.83 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
{
"name": "keboola/app-project-migrate",
"description": "Migrate project",
"license": "MIT",
"require": {
"PHP": "^7.4",
"keboola/encryption-api-php-client": "^0.2.2",
"keboola/job-queue-api-php-client": "^0.4.1",
"keboola/php-component": "^8.3",
"keboola/storage-api-client": "^12.2",
"keboola/sync-actions-client": "1.0",
"keboola/syrup-php-client": "^5.1"
},
"require-dev": {
"keboola/coding-standard": "^11.0",
"keboola/datadir-tests": "^5.2",
"keboola/php-temp": "^2.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^0.12.84",
"phpunit/phpunit": "^9.5",
"symfony/process": "^5.2"
},
"autoload": {
"psr-4": {
"Keboola\\AppProjectMigrate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Keboola\\AppProjectMigrate\\DatadirTests\\": "tests/functional/",
"Keboola\\AppProjectMigrate\\Tests\\": "tests/phpunit/"
}
},
"scripts": {
"tests-phpunit": "phpunit",
"tests-datadir": "phpunit tests/functional",
"tests": [
"@tests-phpunit",
"@tests-datadir"
],
"phpstan": "phpstan analyse ./src ./tests --level=max --no-progress -c phpstan.neon",
"phpcs": "phpcs -n --ignore=vendor --extensions=php .",
"phpcbf": "phpcbf -n --ignore=vendor --extensions=php .",
"phplint": "parallel-lint -j 10 --exclude vendor .",
"build": [
"@phplint",
"@phpcs",
"@phpstan",
"@tests"
],
"ci": [
"@composer validate --no-check-publish --no-check-all",
"@build"
]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
}
}