Skip to content

Commit

Permalink
build(release): merge branch develop (release 1.8.7)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcantondahmen committed Sep 8, 2021
2 parents 92bc8eb + b67f76f commit 8bbc8f2
Show file tree
Hide file tree
Showing 358 changed files with 5,114 additions and 3,446 deletions.
15 changes: 14 additions & 1 deletion .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
'ordered_class_elements' => array(
'sort_algorithm' => 'alpha'
),
'ordered_imports' => true,
'function_typehint_space' => true,
'method_argument_space' => array(
'on_multiline' => 'ensure_fully_multiline',
'after_heredoc' => true
Expand All @@ -42,14 +44,25 @@
'no_trailing_whitespace' => true,
'no_whitespace_before_comma_in_array' => true,
'no_whitespace_in_blank_line' => true,
'phpdoc_add_missing_param_annotation' => true,
'nullable_type_declaration_for_default_null_value' => array(
'use_nullable_type_declaration' => true
),
'phpdoc_add_missing_param_annotation' => array(
'only_untyped' => false
),
'phpdoc_align' => array(
'align' => 'left'
),
'phpdoc_indent' => true,
'phpdoc_order' => true,
'phpdoc_scalar' => true,
'phpdoc_trim' => true,
'phpdoc_trim_consecutive_blank_line_separation' => true,
'return_type_declaration' => true,
'phpdoc_types' => true,
'phpdoc_types_order' => array(
'null_adjustment' => 'always_last'
),
'single_blank_line_before_namespace' => true,
'single_blank_line_at_eof' => true,
'single_line_after_imports' => true,
Expand Down
30 changes: 0 additions & 30 deletions automad/README.md

This file was deleted.

56 changes: 0 additions & 56 deletions automad/autoload.php

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
9 changes: 7 additions & 2 deletions automad/console
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
* http://automad.org/license
*/

use Automad\Autoload;
use Automad\Core\Config;
use Automad\UI\Console;

if (http_response_code() || !defined('STDIN')) {
Expand All @@ -45,7 +47,10 @@ define('AUTOMAD', true);
define('AUTOMAD_CONSOLE', true);
define('AM_BASE_DIR', dirname(dirname(__FILE__)));

require AM_BASE_DIR . '/automad/autoload.php';
require AM_BASE_DIR . '/automad/const.php';
require_once AM_BASE_DIR . '/automad/src/Autoload.php';

Autoload::init();
Config::overrides();
Config::defaults();

$console = new Console($argv);
209 changes: 0 additions & 209 deletions automad/const.php

This file was deleted.

Loading

0 comments on commit 8bbc8f2

Please sign in to comment.