Bootstrap: move `composer.{json|lock}` into `src`.
See #36335. Built from https://develop.svn.wordpress.org/trunk@38409 git-svn-id: http://core.svn.wordpress.org/trunk@38350 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e0a0be9579
commit
4bf37e5555
|
@ -0,0 +1,67 @@
|
|||
{
|
||||
"name": "wordpress/wordpress",
|
||||
"description": "WordPress is web software you can use to create a beautiful website or blog.",
|
||||
"keywords": [
|
||||
"blog",
|
||||
"cms"
|
||||
],
|
||||
"type": "wordpress-core",
|
||||
"homepage": "https://wordpress.org/",
|
||||
"license": "GPL-2.0+",
|
||||
"authors": [
|
||||
{
|
||||
"name": "WordPress Community",
|
||||
"homepage": "https://wordpress.org/about/"
|
||||
}
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://core.trac.wordpress.org/",
|
||||
"forum": "https://wordpress.org/support/",
|
||||
"wiki": "https://codex.wordpress.org/",
|
||||
"irc": "irc://irc.freenode.net/wordpress",
|
||||
"source": "https://core.trac.wordpress.org/browser"
|
||||
},
|
||||
"require": {
|
||||
"xrstf/composer-php52": "^1.0"
|
||||
},
|
||||
"scripts": {
|
||||
"post-install-cmd": [
|
||||
"xrstf\\Composer52\\Generator::onPostInstallCmd"
|
||||
],
|
||||
"post-update-cmd": [
|
||||
"xrstf\\Composer52\\Generator::onPostInstallCmd"
|
||||
],
|
||||
"post-autoload-dump": [
|
||||
"xrstf\\Composer52\\Generator::onPostInstallCmd"
|
||||
]
|
||||
},
|
||||
"autoload": {
|
||||
"classmap": [
|
||||
"src/wp-includes/",
|
||||
"src/wp-admin/"
|
||||
],
|
||||
"exclude-from-classmap": [
|
||||
"src/wp-admin/includes/deprecated.php",
|
||||
"src/wp-includes/atomlib.php",
|
||||
"src/wp-includes/cache.php",
|
||||
"src/wp-includes/class-json.php",
|
||||
"src/wp-includes/class-phpmailer.php",
|
||||
"src/wp-includes/class-requests.php",
|
||||
"src/wp-includes/class-simplepie.php",
|
||||
"src/wp-includes/class-snoopy.php",
|
||||
"src/wp-includes/compat.php",
|
||||
"src/wp-includes/pluggable-deprecated.php",
|
||||
"src/wp-includes/rss.php",
|
||||
"src/wp-includes/ID3/",
|
||||
"src/wp-includes/pomo/",
|
||||
"src/wp-includes/random_compat/error_polyfill.php",
|
||||
"src/wp-includes/Requests/",
|
||||
"src/wp-includes/SimplePie/",
|
||||
"src/wp-includes/Text/",
|
||||
"src/wp-includes/widgets/"
|
||||
]
|
||||
},
|
||||
"config": {
|
||||
"vendor-dir": "src/wp-vendor"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
"_readme": [
|
||||
"This file locks the dependencies of your project to a known state",
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"hash": "a72f57ac77499086388d3fd01787fc07",
|
||||
"content-hash": "4b675f5b2ea4e6f58fcbdf81132e35bb",
|
||||
"packages": [
|
||||
{
|
||||
"name": "xrstf/composer-php52",
|
||||
"version": "v1.0.20",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/composer-php52/composer-php52.git",
|
||||
"reference": "bd41459d5e27df8d33057842b32377c39e97a5a8"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/composer-php52/composer-php52/zipball/bd41459d5e27df8d33057842b32377c39e97a5a8",
|
||||
"reference": "bd41459d5e27df8d33057842b32377c39e97a5a8",
|
||||
"shasum": ""
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-default": "1.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-0": {
|
||||
"xrstf\\Composer52": "lib/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"time": "2016-04-16 21:52:24"
|
||||
}
|
||||
],
|
||||
"packages-dev": [],
|
||||
"aliases": [],
|
||||
"minimum-stability": "stable",
|
||||
"stability-flags": [],
|
||||
"prefer-stable": false,
|
||||
"prefer-lowest": false,
|
||||
"platform": [],
|
||||
"platform-dev": []
|
||||
}
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.7-alpha-38408';
|
||||
$wp_version = '4.7-alpha-38409';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue