-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 1.81 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
{
"name": "rumur/linkedout",
"type": "wordpress-plugin",
"version": "0.1.0",
"description": "LinkedIn like WordPress Plugin.",
"keywords": ["wordpress", "plugin", "linkedin", "Rest API"],
"homepage": "https://github.com/rumur",
"license": "MIT",
"authors": [
{
"name": "rumur",
"email": "rumur.dev@gmail.com"
}
],
"autoload" : {
"psr-4" : {
"LinkedOut\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1.0",
"ext-json": "*",
"psr/container": "^2.0",
"psr/simple-cache": "^3.0",
"league/fractal": "^0.20.1",
"psr/log": "^3.0",
"psr/clock": "^1.0",
"psr/http-message": "^2.0"
},
"extra": {
"wordpress-install-dir": ".tools/wp"
},
"scripts": {
"test": "./vendor/bin/phpunit -v",
"test:integration": "./vendor/bin/phpunit -v --testsuite=integration",
"lint": "./vendor/bin/phpcs -v",
"lint:fix": "./vendor/bin/phpcbf -v",
"rector": "./vendor/bin/rector process src --dry-run",
"rector:fix": "./vendor/bin/rector process src",
"phpstan": "./vendor/bin/phpstan analyse"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.11",
"inpsyde/php-coding-standards": "^2@dev",
"wp-phpunit/wp-phpunit": "^6.7",
"roots/wordpress-no-content": "^6.7",
"rector/rector": "^1.2",
"roots/wordpress-core-installer": "^1.100",
"phpunit/phpunit": "^9.6",
"yoast/phpunit-polyfills": "^3.0",
"phpstan/phpstan": "^1.12",
"szepeviktor/phpstan-wordpress": "^1.3",
"wp-cli/wp-cli-bundle": "^2.11",
"symfony/var-dumper": "^7.2",
"mockery/mockery": "^1.6"
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"roots/wordpress-core-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}