Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
ryangjchandler committed Oct 4, 2024
0 parents commit 90002c2
Show file tree
Hide file tree
Showing 105 changed files with 41,075 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[*]
indent_size = 4
indent_style = space
tab_width = 4
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
composer.lock
vendor
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Phiki

Phiki is a syntax highlighter written in PHP. It uses TextMate grammar files and Visual Studio Code themes to highlight code.
53 changes: 53 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"name": "ryangjchandler/phiki",
"description": "Syntax highlighting using TextMate grammars in PHP.",
"license": "MIT",
"authors": [
{
"name": "Ryan Chandler",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://ryangjchandler.co.uk"
}
],
"require": {
"php": "^8.2",
"illuminate/support": "^11.23",
"league/commonmark": "^2.5"
},
"autoload": {
"psr-4": {
"Phiki\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phiki\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"symfony/var-dumper": "^7.1",
"pestphp/pest": "^3.0",
"laravel/pint": "^1.17",
"phpstan/phpstan": "^1.12",
"phpstan/extension-installer": "^1.4"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"sample": [
"Composer\\Config::disableProcessTimeout",
"php -S 127.0.0.1:8080 ./samples/sample.php"
],
"serve": [
"Composer\\Config::disableProcessTimeout",
"php -S 127.0.0.1:8080 ./test-server.php"
]
}
}
Loading

0 comments on commit 90002c2

Please sign in to comment.