Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [0.7.0] - 2026-09-14
## [0.7.0] - 2026-09-20

- Extract immutable source-code slices by line, text, or language structure.
- Preserve exact source content, byte ranges, and original line numbers.
Expand Down
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,8 @@ annotations, highlighting, and rendering to downstream consumers.

## Installation

This package is currently distributed from its development branch; no stable
release is published yet. Configure its VCS repository before installing it:

```bash
composer config repositories.alto-code-slicer vcs https://github.com/altophp/code-slicer
composer require alto/code-slicer:dev-main
composer require alto/code-slicer
```

Code Slicer requires PHP 8.4 or later, the tokenizer extension, and `alto/language`.
Expand Down
8 changes: 2 additions & 6 deletions docs/installation.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
# Installation

This package is currently distributed from its development branch; no stable
release is published yet. Use an explicit VCS repository for evaluation.

Code Slicer requires PHP 8.4 or later and the Tokenizer extension. Composer
installs its `alto/language` dependency automatically.

## Install

Run these commands in your project directory:
Run this command in your project directory:

```sh
composer config repositories.alto-code-slicer vcs https://github.com/altophp/code-slicer
composer require alto/code-slicer:dev-main
composer require alto/code-slicer
```

## Verify the installation
Expand Down
Loading