Skip to content

Commit 7be6961

Browse files
committed
dodane informacije
1 parent 4a9c50c commit 7be6961

1 file changed

Lines changed: 32 additions & 5 deletions

File tree

composer.json

Lines changed: 32 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,35 @@
1+
12
{
2-
"name": "fillips/php-config",
3+
"name": "lfilips/php-config",
34
"description": "S tem paketom boste lahko enostavno zapisovali konfiguracijske datoteke v obliki razredov ali pa v navadni.",
4-
"type": "project",
5-
"require": {
6-
"filips/php-config": "1.*"
5+
"keywords": ["filips", "php-config"],
6+
"type": "project",
7+
"autoload": {
8+
"classmap": [
9+
"database"
10+
],
11+
"psr-4": {
12+
"App\\": "app/"
13+
}
714
},
8-
}
15+
"scripts": {
16+
"post-root-package-install": [
17+
"php -r \"copy('.env.example', '.env');\""
18+
],
19+
"post-create-project-cmd": [
20+
"php artisan key:generate"
21+
],
22+
"post-install-cmd": [
23+
"php artisan clear-compiled",
24+
"php artisan optimize"
25+
],
26+
"pre-update-cmd": [
27+
"php artisan clear-compiled"
28+
],
29+
"post-update-cmd": [
30+
"php artisan optimize"
31+
]
32+
},
33+
"config": {
34+
"preferred-install": "dist"
35+

0 commit comments

Comments
 (0)