Skip to content

Commit ecca0a1

Browse files
authored
Merge pull request #1 from rcrdortiz/fix/build-errors
Fix psalm and ci errors
2 parents 3a19127 + db8e290 commit ecca0a1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+624
-599
lines changed

β€Ž.github/workflows/ci.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up PHP
1818
uses: shivammathur/setup-php@v2
1919
with:
20-
php-version: '8.2'
20+
php-version: '8.1'
2121
coverage: xdebug
2222

2323
- name: Install dependencies

β€Ž.github/workflows/psalm.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up PHP
1717
uses: shivammathur/setup-php@v2
1818
with:
19-
php-version: '8.2'
19+
php-version: '8.1'
2020

2121
- name: Install dependencies
2222
run: composer install --prefer-dist --no-progress

β€Žcomposer.jsonβ€Ž

Lines changed: 26 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,30 @@
11
{
2-
"name": "rcrdortiz/axpecto",
3-
"description": "PHP meta framework for building modern, AI oriented, aspect orientated development frameworks.",
4-
"type": "library",
5-
"version": "1.0.2",
6-
"require": {
7-
"php": ">=8.1"
2+
"name": "rcrdortiz/axpecto",
3+
"description": "PHP meta framework for building modern, AI oriented, aspect orientated development frameworks.",
4+
"type": "library",
5+
"version": "1.0.2",
6+
"require": {
7+
"php": ">=8.1",
8+
"ext-mysqli": "*",
9+
"ext-pdo": "*"
10+
},
11+
"require-dev": {
12+
"phpunit/phpunit": "^10.4",
13+
"vimeo/psalm": "^6.10"
14+
},
15+
"autoload": {
16+
"psr-4": {
17+
"Axpecto\\": "src/"
818
},
9-
"require-dev": {
10-
"phpunit/phpunit": "^10.4",
11-
"vimeo/psalm": "^6.10"
12-
},
13-
"autoload": {
14-
"files": [
15-
"src/load.php"
16-
]
17-
},
18-
"license": "GNU",
19-
"authors": [
20-
{
21-
"name": "Richard Ortiz",
22-
"email": "[email protected]"
23-
}
19+
"files": [
20+
"src/functions.php"
2421
]
22+
},
23+
"license": "GNU",
24+
"authors": [
25+
{
26+
"name": "Richard Ortiz",
27+
"email": "[email protected]"
28+
}
29+
]
2530
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* @package Axpecto\Aop
1818
*/
1919
#[Attribute]
20-
abstract class Annotation {
20+
class Annotation {
2121

2222
/**
2323
* The handler for processing the method execution annotation.
File renamed without changes.

β€Žsrc/Axpecto/ClassBuilder/ExecutionErrorHandler.phpβ€Ž

Lines changed: 0 additions & 7 deletions
This file was deleted.

β€Žsrc/Axpecto/ClassLoader/FileSystemClassLoader.phpβ€Ž

Lines changed: 0 additions & 149 deletions
This file was deleted.

β€Žsrc/Axpecto/Collection/CollectionInterface.phpβ€Ž

Lines changed: 0 additions & 155 deletions
This file was deleted.

0 commit comments

Comments
Β (0)