-
Notifications
You must be signed in to change notification settings - Fork 34
/
composer.json
39 lines (39 loc) · 927 Bytes
/
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
{
"name": "facebook/pixel-for-wordpress",
"description": "Facebook Pixel plugins for wordpress",
"type": "project",
"require-dev": {
"phing/phing": "^3.0.0-RC3",
"10up/wp_mock": "1.0.1",
"squizlabs/php_codesniffer": "^3.10",
"wp-coding-standards/wpcs": "^3.1",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0"
},
"prefer-stable" : true,
"license": "GPL",
"require": {
"facebook/php-business-sdk": "^19.0",
"techcrunch/wp-async-task": "dev-master"
},
"autoload": {
"psr-4": {
"FacebookPixelPlugin\\": "./",
"FacebookPixelPlugin\\Core\\": "core/",
"FacebookPixelPlugin\\Integration\\": "integration/"
}
},
"autoload-dev": {
"classmap": [
"__tests__/",
"./"
]
},
"replace": {
"guzzlehttp/guzzle": "*"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}