-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Built changes for v1.4.0 from production c436a73
- Loading branch information
Showing
35 changed files
with
1,196 additions
and
1,674 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,24 @@ | ||
.idea | ||
.vscode | ||
tests/php/build | ||
tests/php/wp-unit-test | ||
|
||
# Silly Macs | ||
.DS_Store | ||
|
||
# For those using Git in their SVN | ||
# ignore files in the WPcom plugin directory | ||
wpcom-helper.php | ||
VERSION | ||
tests/php/tests | ||
todo.txt | ||
|
||
# Created by Apigen for logs | ||
/build | ||
|
||
/docs | ||
|
||
/report/ | ||
|
||
.svn | ||
|
||
composer.lock | ||
/vendor/ | ||
/node_modules | ||
.github | ||
.phpcs | ||
.phpcs.xml | ||
.phpunit.result.cache | ||
.scaffolder | ||
.scoper | ||
*.sql | ||
*.tar.gz | ||
*.zip | ||
bin | ||
composer.lock | ||
configure.php | ||
DOCKER_ENV | ||
Dockerfile | ||
Makefile | ||
node_modules/ | ||
output.log | ||
phpunit.xml | ||
phpunit.xml | ||
tests | ||
tests | ||
Thumbs.db | ||
wp-cli.local.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,55 @@ | ||
{ | ||
"name": "alleyinteractive/wp-asset-manager", | ||
"description": "Asset Manager is a toolkit for managing front-end assets and more tightly controlling where, when, and how they're loaded.", | ||
"license": "GPL-2.0-only", | ||
"type": "wordpress-plugin", | ||
"keywords": [ | ||
"wordpress", | ||
"wordpress-plugin" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Alley Interactive", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require-dev": { | ||
"alleyinteractive/alley-coding-standards": "^2.0", | ||
"mantle-framework/testkit": "^1.2" | ||
}, | ||
"prefer-stable": true, | ||
"autoload": { | ||
"files": [ | ||
"src/helpers.php" | ||
] | ||
"name": "alleyinteractive/wp-asset-manager", | ||
"description": "Asset Manager is a toolkit for managing front-end assets and more tightly controlling where, when, and how they're loaded.", | ||
"license": "GPL-2.0-only", | ||
"type": "wordpress-plugin", | ||
"keywords": [ | ||
"wordpress", | ||
"wordpress-plugin" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Alley Interactive", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"prefer-stable": true, | ||
"autoload": { | ||
"files": [ | ||
"src/helpers.php" | ||
] | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Alley\\WP\\Asset_Manager\\Tests\\": "tests/" | ||
} | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"alleyinteractive/composer-wordpress-autoloader": true, | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"sort-packages": true | ||
}, | ||
"extra": { | ||
"wordpress-autoloader": { | ||
"autoload": { | ||
"Alley\\WP\\Asset_Manager\\": "src/" | ||
}, | ||
"autoload-dev": { | ||
"Alley\\WP\\Asset_Manager\\Tests\\": "tests/" | ||
} | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"alleyinteractive/composer-wordpress-autoloader": true, | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
}, | ||
"sort-packages": true | ||
}, | ||
"extra": { | ||
"wordpress-autoloader": { | ||
"autoload": { | ||
"Alley\\WP\\Asset_Manager\\": "src/" | ||
}, | ||
"autoload-dev": { | ||
"Alley\\WP\\Asset_Manager\\Tests\\": "tests/" | ||
} | ||
} | ||
}, | ||
"scripts": { | ||
"lint": "@phpcs", | ||
"lint:fix": "@phpcbf", | ||
"phpcbf": "phpcbf .", | ||
"phpcs": "phpcs --standard=./phpcs.xml .", | ||
"phpunit": "phpunit", | ||
"test": [ | ||
"@phpcs", | ||
"@phpunit" | ||
] | ||
} | ||
}, | ||
"scripts": { | ||
"lint": "@phpcs", | ||
"lint:fix": "@phpcbf", | ||
"phpcbf": "phpcbf .", | ||
"phpcs": "phpcs --standard=./phpcs.xml .", | ||
"phpunit": "phpunit", | ||
"test": [ | ||
"@phpcs", | ||
"@phpunit" | ||
] | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.