-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
73 lines (73 loc) · 1.85 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
{
"name": "infinum/eightshift-libs",
"description": "WordPress libs developed by Eightshift team to use in modern WordPress.",
"keywords": [
"composer",
"installer",
"plugin",
"blocks",
"Gutenberg",
"WordPress"
],
"homepage": "https://eightshift.com/",
"license": "MIT",
"authors": [
{
"name": "Eightshift team",
"email": "[email protected]",
"homepage": "https://eightshift.com/",
"role": "Developer / IT Manager"
}
],
"support": {
"issues": "https://github.com/infinum/eightshift-libs/issues",
"source": "https://github.com/infinum/eightshift-libs"
},
"require": {
"php": ">=8.2",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"php-di/invoker": "^2.3.4",
"php-di/php-di": "^7.0.6"
},
"require-dev": {
"captainhook/captainhook": "^5.23.0",
"dealerdirect/phpcodesniffer-composer-installer": "v1.0.0",
"infinum/eightshift-coding-standards": "^3.0.0",
"php-parallel-lint/php-parallel-lint": "^v1.4.0",
"php-stubs/wordpress-stubs": "^v6.5.3",
"roave/security-advisories": "dev-master",
"szepeviktor/phpstan-wordpress": "^v1.3.4",
"wp-cli/wp-cli": "^v2.10.0"
},
"autoload": {
"psr-4": {
"EightshiftLibs\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"lock": false,
"sort-packages": true,
"optimize-autoloader": true,
"process-timeout": 2000,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
},
"scripts": {
"post-autoload-dump": [
"vendor/bin/captainhook install -f -s"
],
"test:types": "@php ./vendor/bin/phpstan analyze",
"test:standards": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --runtime-set testVersion 8.2-",
"standards:fix": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf --runtime-set testVersion 8.2-",
"test": [
"@test:standards",
"@test:types"
]
}
}