Skip to content

Commit b06f997

Browse files
committed
adding composer
1 parent a2d3b15 commit b06f997

7 files changed

Lines changed: 2328 additions & 73 deletions

File tree

composer.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"name": "phalcon/tutorial",
3+
"type": "library",
4+
"description": "This is a sample application for the Phalcon PHP Framework",
5+
"keywords": [
6+
"phalcon",
7+
"framework",
8+
"sample app",
9+
"tytiruak"
10+
],
11+
"homepage": "https://phalcon.io",
12+
"license": "MIT",
13+
"authors": [
14+
{
15+
"name": "Phalcon Team",
16+
"homepage": "https://github.com/phalcon"
17+
},
18+
{
19+
"name": "Contributors",
20+
"homepage": "https://github.com/phalcon/tutorial/graphs/contributors"
21+
}
22+
],
23+
"require": {
24+
"php": ">=8.0",
25+
"ext-openssl": "*",
26+
"ext-phalcon": "^5.0.0",
27+
"pds/skeleton": "^1.0"
28+
},
29+
"require-dev": {
30+
"phalcon/ide-stubs": "^v5.0.1",
31+
"squizlabs/php_codesniffer": "^3.7",
32+
"vimeo/psalm": "^4.27"
33+
},
34+
"autoload": {
35+
"psr-4": {
36+
"Tutorial\\": "src/"
37+
}
38+
},
39+
"scripts": {
40+
"cs": "./vendor/bin/phpcs --standard=phpcs.xml",
41+
"cs-fix": "./vendor/bin/phpcbf --standard=phpcs.xml",
42+
"analyze": "./vendor/bin/psalm"
43+
}
44+
}

0 commit comments

Comments
 (0)