Skip to content

Commit 36ee223

Browse files
committed
feat: add CopyResource, UpdateComposerJson, and GitHooks commands while refactoring command architecture
1 parent 87a9649 commit 36ee223

55 files changed

Lines changed: 2291 additions & 1333 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.docheader

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
/**
2-
* This file is part of fast-forward/dev-tools.
2+
* Fast Forward Development Tools for PHP projects
33
*
4-
* This source file is subject to the license bundled
5-
* with this source code in the file LICENSE.
4+
* This file is part of fast-forward/dev-tools project.
65
*
7-
* @copyright Copyright (c) 2026 Felipe Sayão Lobato Abreu <github@mentordosnerds.com>
8-
* @license https://opensource.org/licenses/MIT MIT License
6+
* @package fast-forward/dev-tools
7+
* @author Felipe Sayão Lobato Abreu <github@mentordosnerds.com>
8+
* @license https://opensource.org/licenses/MIT MIT License
99
*
10-
* @see https://github.com/php-fast-forward/dev-tools
11-
* @see https://github.com/php-fast-forward
12-
* @see https://datatracker.ietf.org/doc/html/rfc2119
10+
* @link https://github.com/php-fast-forward/
11+
* @link https://github.com/php-fast-forward/dev-tools
12+
* @link https://github.com/php-fast-forward/dev-tools/issues
13+
* @link https://php-fast-forward.github.io/dev-tools/
14+
* @link https://datatracker.ietf.org/doc/html/rfc2119
1315
*/
14-

composer.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@
1818
"email": "github@mentordosnerds.com"
1919
}
2020
],
21-
"homepage": "https://php-fast-forward.github.io/dev-tools/",
21+
"homepage": "https://github.com/php-fast-forward/",
2222
"support": {
2323
"issues": "https://github.com/php-fast-forward/dev-tools/issues",
24-
"source": "https://github.com/php-fast-forward/dev-tools"
24+
"source": "https://github.com/php-fast-forward/dev-tools",
25+
"wiki": "https://github.com/php-fast-forward/dev-tools/wiki",
26+
"docs": "https://php-fast-forward.github.io/dev-tools/"
2527
},
2628
"require": {
2729
"php": "^8.3",

resources/docblock/.docheader

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/**
2+
{% if description %} * {{ description|raw }}
3+
*
4+
{% endif %}
5+
* This file is part of {{ package }} project.
6+
*
7+
* @package {{ package }}
8+
* @author {{ copyright_holder|raw }}
9+
{% if license %} * @license https://opensource.org/licenses/{{ license }} {{ license }} License
10+
{% endif %}
11+
*
12+
{% for link in links %} * @link {{ link }}
13+
{% endfor %}
14+
*/

0 commit comments

Comments
 (0)