This repository has been archived by the owner on Apr 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a8ac736
commit 444724a
Showing
2 changed files
with
19 additions
and
31 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
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 |
---|---|---|
|
@@ -66,49 +66,36 @@ | |
"sort-packages": true | ||
}, | ||
"scripts": { | ||
"cleanup": [ | ||
"vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix --show-progress=dots -vvv" | ||
], | ||
"dump": [ | ||
"composer dump-autoload -a" | ||
], | ||
"cleanup": "vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix --show-progress=dots -vvv", | ||
"dump": "composer dump-autoload -a", | ||
"post-install-cmd": [ | ||
"composer dump-autoload -o", | ||
"Umpirsky\\PermissionsHandler\\ScriptHandler::setPermissions" | ||
], | ||
"post-update-cmd": [ | ||
"composer dump-autoload -o" | ||
], | ||
"post-create-project-cmd": [ | ||
"php -r \"copy('config/settings.example.php', 'config/settings.php');\"" | ||
], | ||
"migrate": [ | ||
"vendor/bin/phinx migrate -c config/phinx.php -e default --ansi" | ||
], | ||
"rollback": [ | ||
"vendor/bin/phinx rollback -c config/phinx.php -e default --ansi -t 0" | ||
], | ||
"post-update-cmd": "composer dump-autoload -o", | ||
"post-create-project-cmd": "php -r \"copy('config/settings.example.php', 'config/settings.php');\"", | ||
"migrate": "vendor/bin/phinx migrate -c config/phinx.php -e default --ansi", | ||
"rollback": "vendor/bin/phinx rollback -c config/phinx.php -e default --ansi -t 0", | ||
"compile": [ | ||
"php bin/utilities.php compile", | ||
"Umpirsky\\PermissionsHandler\\ScriptHandler::setPermissions" | ||
], | ||
"translate": [ | ||
"php bin/utilities.php translate" | ||
], | ||
"clear_cache": [ | ||
"php bin/utilities.php clear_cache" | ||
], | ||
"set-perms": [ | ||
"Umpirsky\\PermissionsHandler\\ScriptHandler::setPermissions" | ||
] | ||
"translate": "php bin/utilities.php translate", | ||
"clear_cache": "php bin/utilities.php clear_cache", | ||
"set-perms": "Umpirsky\\PermissionsHandler\\ScriptHandler::setPermissions" | ||
}, | ||
"extra": { | ||
"writable-dirs": ["var/cache", "var/logs", "var/tmp", "resources/views/cache/"] | ||
"writable-dirs": [ | ||
"var/cache", | ||
"var/logs", | ||
"var/tmp", | ||
"resources/views/cache/" | ||
] | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "[email protected]:darkalchemy/PermissionsHandler.git" | ||
"url": "[email protected]:darkalchemy/PermissionsHandler.git" | ||
} | ||
] | ||
} |