|
1 | 1 | { |
2 | 2 | "name": "phalcon/phql", |
3 | 3 | "description": "Phalcon Query Language (PHQL)", |
| 4 | + "type": "library", |
4 | 5 | "keywords": [ |
5 | 6 | "php", |
6 | 7 | "framework", |
| 8 | + "phalcon", |
7 | 9 | "query", |
8 | | - "sql" |
| 10 | + "sql", |
| 11 | + "phql" |
9 | 12 | ], |
| 13 | + "homepage": "https://phalcon.io", |
10 | 14 | "license": "MIT", |
| 15 | + "authors": [ |
| 16 | + { |
| 17 | + "name": "Phalcon Team", |
| 18 | + "email": "team@phalcon.io", |
| 19 | + "homepage": "https://phalcon.io" |
| 20 | + } |
| 21 | + ], |
11 | 22 | "require": { |
12 | | - "php": ">=8.1", |
| 23 | + "php": ">=8.1 <9.0", |
13 | 24 | "ext-mbstring": "*" |
14 | 25 | }, |
15 | 26 | "suggest": { |
16 | 27 | "phalcon/phalcon": "The Phalcon framework this module integrates with" |
17 | 28 | }, |
18 | 29 | "require-dev": { |
19 | 30 | "phpstan/phpstan": "^2.0", |
20 | | - "phpunit/phpunit": "^10.5" |
| 31 | + "phpunit/phpunit": "^10.5", |
| 32 | + "pds/skeleton": "^1.0", |
| 33 | + "pds/composer-script-names": "^1.0", |
| 34 | + "squizlabs/php_codesniffer": "^4.0" |
21 | 35 | }, |
22 | 36 | "autoload": { |
23 | 37 | "psr-4": { |
|
29 | 43 | }, |
30 | 44 | "autoload-dev": { |
31 | 45 | "psr-4": { |
32 | | - "Phalcon\\Phql\\Tests\\": "tests/", |
33 | | - "Phalcon\\Phql\\Tests\\Unit\\": "tests/unit/" |
| 46 | + "Phalcon\\Phql\\Tests\\": "tests/" |
34 | 47 | } |
35 | 48 | }, |
| 49 | + "minimum-stability": "stable", |
| 50 | + "prefer-stable": true, |
36 | 51 | "scripts": { |
| 52 | + "cs": "vendor/bin/phpcs --standard=phpcs.xml", |
| 53 | + "cs-fix": "vendor/bin/phpcbf --standard=phpcs.xml", |
| 54 | + "analyze": "vendor/bin/phpstan analyse -c phpstan.neon --memory-limit 1024M", |
37 | 55 | "test": "vendor/bin/phpunit -c phpunit.xml --fail-on-all-issues", |
38 | 56 | "test-coverage": "vendor/bin/phpunit -c phpunit.xml --coverage-html tests/_output/coverage/" |
| 57 | + }, |
| 58 | + "support": { |
| 59 | + "issues": "https://github.com/phalcon/phql/issues", |
| 60 | + "source": "https://github.com/phalcon/phql" |
39 | 61 | } |
40 | 62 | } |
0 commit comments