Skip to content

Commit a545e8f

Browse files
committed
Update to EasyEngine packages
1 parent ec52cf8 commit a545e8f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

php/EE/AutoloadSplitter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class AutoloadSplitter {
2727
* @return bool Whether to split out the class into a separate autoloader.
2828
*/
2929
public function __invoke( $class, $code ) {
30-
return 1 === preg_match( '/\/mrrobot47\/\w+(?:-\w+)*-command\//', $code )
30+
return 1 === preg_match( '/\/easyengine\/\w+(?:-\w+)*-command\//', $code )
3131
|| 1 === preg_match( '/\/php\/commands\/src\//', $code );
3232
}
3333
}

utils/make-phar.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ function get_composer_versions( $current_version ) {
110110
fwrite( STDERR, sprintf( "Warning: No packages in '%s'." . PHP_EOL, $composer_lock_path ) );
111111
return '';
112112
}
113-
$vendor_versions = array( implode( ' ', array( 'mrrobot47/ee', $current_version, date( 'c' ) ) ) );
113+
$vendor_versions = array( implode( ' ', array( 'easyengine/ee', $current_version, date( 'c' ) ) ) );
114114
$missing_names = $missing_versions = $missing_references = 0;
115115
foreach ( $composer_lock['packages'] as $package ) {
116116
if ( isset( $package['name'] ) ) {
@@ -189,7 +189,7 @@ function get_composer_versions( $current_version ) {
189189
;
190190
} else {
191191
$finder
192-
->in(EE_VENDOR_DIR . '/mrrobot47')
192+
->in(EE_VENDOR_DIR . '/easyengine')
193193
->in(EE_VENDOR_DIR . '/wp-cli')
194194
->in(EE_VENDOR_DIR . '/psr')
195195
->in(EE_VENDOR_DIR . '/seld')

0 commit comments

Comments
 (0)