https://github.com/bolt/core-developer-tools
Bundle designed to be used on Bolt git repositories for core development
https://github.com/bolt/core-developer-tools
Last synced: about 1 year ago
JSON representation
Bundle designed to be used on Bolt git repositories for core development
- Host: GitHub
- URL: https://github.com/bolt/core-developer-tools
- Owner: bolt
- Created: 2018-05-09T10:17:27.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-09T18:09:53.000Z (about 8 years ago)
- Last Synced: 2025-03-11T22:19:19.510Z (over 1 year ago)
- Language: PHP
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
Core Developer Tools
====================
This is a Bolt Bundle designed to be used on Bolt git repositories for core
development **only**.
**No warranties or support provided!**
## Requirements
* Bolt 3.4+
* PHP 7.1+
## Commands
| Command | Description |
| ---------------------------- | ------------------------------------------------------ |
| `core:locale-update` | Update locale file(s) to match keys in PHP & Twig |
| `core:test-db-schema-update` | Update Sqlite database schema used in functional tests |
## Configuration
Clone the repository to somewhere local on a development machine, and add the
full path to the cloned repositories `src/` directory in your Bolt git clone's
root `composer.json` and run `composer dumpautoload` afterwards.
### `composer.json`
```json
"autoload": {
"psr-4": {
"Bolt\\": "src",
"Bolt\\Extension\\CoreDeveloper\\": "/path/to/core-developer-tools/src"
},
"files": [
"app/deprecated.php"
]
},
```
### `.bolt.yml`
```yaml
extensions:
- Bolt\Extension\CoreDeveloper\ToolsExtension
```