Skip to content

Commit

Permalink
Built changes for v1.4.0 from production c436a73
Browse files Browse the repository at this point in the history
  • Loading branch information
srtfisher committed Jan 14, 2025
1 parent c436a73 commit aaa81e3
Show file tree
Hide file tree
Showing 35 changed files with 1,196 additions and 1,674 deletions.
24 changes: 0 additions & 24 deletions .deployignore

This file was deleted.

17 changes: 0 additions & 17 deletions .github/dependabot.yml

This file was deleted.

65 changes: 0 additions & 65 deletions .github/workflows/all-pr-tests.yml

This file was deleted.

19 changes: 0 additions & 19 deletions .github/workflows/built-release.yml

This file was deleted.

48 changes: 22 additions & 26 deletions .gitignore
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
102 changes: 49 additions & 53 deletions composer.json
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"
]
}
}
19 changes: 0 additions & 19 deletions phpunit.xml

This file was deleted.

Loading

0 comments on commit aaa81e3

Please sign in to comment.