-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.27 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
{
"name": "talp1/jsonld_for_wordpress",
"description": "Easily setup and manage JsonLD from your wordpress admin area",
"type": "wordpress-plugin",
"license": "All Right Reserved",
"autoload": {
"psr-4": {
"JsonLDForWP\\Framework\\": "framework/",
"JsonLDForWP\\Plugin\\": "plugin/"
},
"classmap": [
"jsonld_for_wordpress.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"JsonLDForWP\\Tools\\EntitiesGenerator\\": "tools/entities_generator/"
}
},
"authors": [
{
"name": "Talp1"
}
],
"minimum-stability": "stable",
"require-dev": {
"phpstan/phpstan": "1.8.x-dev",
"thecodingmachine/phpstan-safe-rule": "^1.2",
"phpunit/phpunit": "^9",
"fzaninotto/faker": "1.9.x-dev",
"szepeviktor/phpstan-wordpress": "dev-master",
"yoast/wp-test-utils": "1.x-dev",
"symfony/var-dumper": "6.2.x-dev",
"squizlabs/php_codesniffer": "3.*",
"symfony/panther": "^2.0",
"dbrekelmans/bdi": "^1.0",
"doctrine/inflector": "^2.0"
},
"require": {
"thecodingmachine/safe": "2.2.x-dev",
"latte/latte": "3.0.x-dev"
}
}