Skip to content

Commit 09bab39

Browse files
Merge branch '5.0.x' into 5.0.x
2 parents 51a2cfb + cba8251 commit 09bab39

File tree

9 files changed

+481
-461
lines changed

9 files changed

+481
-461
lines changed

.gitignore

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,15 @@
55
#
66
# https://help.github.com/articles/ignoring-files/#create-a-global-gitignore
77

8-
/vendor
8+
# IDE
9+
.idea/
10+
*.iml
11+
12+
# local tests
13+
.local/
14+
.phalcon/
15+
dummy/
16+
default/
17+
18+
# composer
19+
vendor/

composer.json

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@
22
"name": "phalcon/devtools",
33
"type": "library",
44
"description": "This tools provide you useful scripts to generate code helping to develop faster and easy applications that use with Phalcon framework.",
5-
"keywords": ["framework", "phalcon", "devtools", "webtools", "phar", "dev"],
5+
"keywords": [
6+
"framework",
7+
"phalcon",
8+
"devtools",
9+
"webtools",
10+
"phar",
11+
"dev"
12+
],
613
"homepage": "https://phalcon.io",
714
"license": "BSD-3-Clause",
815
"authors": [
@@ -21,8 +28,12 @@
2128
"source": "https://github.com/phalcon/phalcon-devtools",
2229
"forum": "https://forum.phalcon.io"
2330
},
31+
"config": {
32+
"optimize-autoloader": true,
33+
"sort-packages": true
34+
},
2435
"require": {
25-
"php": ">=7.4.1",
36+
"php": "^7.4||~8.0||~8.1||~8.2",
2637
"ext-pdo": "*",
2738
"ext-phalcon": "^5.0.0",
2839
"psy/psysh": "~0.9",
@@ -46,8 +57,8 @@
4657
"codeception/module-cli": "^1.0"
4758
},
4859
"autoload": {
49-
"psr-4" : {
50-
"Phalcon\\DevTools\\" : "src/"
60+
"psr-4": {
61+
"Phalcon\\DevTools\\": "src/"
5162
}
5263
},
5364
"autoload-dev": {
@@ -62,5 +73,7 @@
6273
"tests/_support/helpers.php"
6374
]
6475
},
65-
"bin": ["phalcon"]
76+
"bin": [
77+
"phalcon"
78+
]
6679
}

0 commit comments

Comments
 (0)