-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop', bump version to 0.2.0
- Loading branch information
Showing
29 changed files
with
2,661 additions
and
739 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
return [ | ||
"target_php_version" => "7.4", | ||
"directory_list" => [ | ||
"src/", | ||
"vendor/", | ||
], | ||
"exclude_analysis_directory_list" => [ | ||
"vendor/", | ||
], | ||
]; |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env php | ||
<?php | ||
|
||
use MAChitgarha\Parvaj\Console\Application; | ||
|
||
require __DIR__ . "/../vendor/autoload.php"; | ||
|
||
(new Application())->run(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,16 @@ | ||
{ | ||
"require": { | ||
"symfony/process": "^5.2", | ||
"webmozart/path-util": "^2.3" | ||
"webmozart/path-util": "^2.3", | ||
"symfony/console": "^5.3", | ||
"twig/twig": "^3.3" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"MAChitgarha\\Parvaj\\": "src" | ||
} | ||
}, | ||
"require-dev": { | ||
"phan/phan": "^5.3" | ||
} | ||
} |
Oops, something went wrong.