-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (31 loc) · 810 Bytes
/
composer.json
File metadata and controls
32 lines (31 loc) · 810 Bytes
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
{
"name": "themexpert/onepager",
"authors": [
{
"name": "ThemeXpert",
"email": "info@themexpert.com"
}
],
"scripts": {
"format": "phpcbf --standard=phpcs.xml --report-summary --report-source",
"phpcs": "phpcs --standard=phpcs.xml --extensions=php -s",
"phpmd": "phpmd inc text phpmd.xml",
"test": "phpunit --confirguration=phpunit.xml",
"lint": "composer run-script phpcs"
},
"require": {
"pimple/pimple": "^3.0",
"kriswallsmith/assetic": "^1.2",
"ramsey/array_column": "^1.1",
"symfony/http-foundation": "2.7.50",
"appsero/client": "^1.0",
"tareq1988/wordpress-settings-api-class": "dev-master"
},
"autoload": {
"classmap": ["src/WordPress"],
"psr-4": {
"ThemeXpert\\": "src/",
"App\\": "app/"
}
}
}